aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/file_evented_update_checker_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/file_evented_update_checker_test.rb')
-rw-r--r--activesupport/test/file_evented_update_checker_test.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/activesupport/test/file_evented_update_checker_test.rb b/activesupport/test/file_evented_update_checker_test.rb
index f98b656d10..9d09cbca8f 100644
--- a/activesupport/test/file_evented_update_checker_test.rb
+++ b/activesupport/test/file_evented_update_checker_test.rb
@@ -5,7 +5,7 @@ require 'file_update_checker_shared_tests'
class FileEventedUpdateCheckerTest < ActiveSupport::TestCase
include FileUpdateCheckerSharedTests
- def new_checker(files=[], dirs={}, &block)
+ def new_checker(files = [], dirs = {}, &block)
ActiveSupport::FileEventedUpdateChecker.new(files, dirs, &block).tap do
wait
end
@@ -61,7 +61,7 @@ class FileEventedUpdateCheckerPathHelperTest < ActiveSupport::TestCase
/foo/bar
/foo/baz
/foo/bar/baz/woo/zoo
- ).map {|path| pn(path)}
+ ).map { |path| pn(path) }
assert_equal pn('/foo'), @ph.longest_common_subpath(paths)
end
@@ -72,7 +72,7 @@ class FileEventedUpdateCheckerPathHelperTest < ActiveSupport::TestCase
/foo/baz
/foo/bar/baz/woo/zoo
/wadus
- ).map {|path| pn(path)}
+ ).map { |path| pn(path) }
assert_equal pn('/'), @ph.longest_common_subpath(paths)
end
@@ -102,7 +102,7 @@ class FileEventedUpdateCheckerPathHelperTest < ActiveSupport::TestCase
/Rails.root/app/controllers
/Rails.root/app/models
/Rails.root/app/helpers
- ).map {|path| pn(path)}
+ ).map { |path| pn(path) }
assert_equal paths, @ph.filter_out_descendants(paths)
end
@@ -114,7 +114,7 @@ class FileEventedUpdateCheckerPathHelperTest < ActiveSupport::TestCase
/Rails.root/app/models
/Rails.root/app/models/concerns
/Rails.root/app/helpers
- ).map {|path| pn(path)}
+ ).map { |path| pn(path) }
assert_equal paths.values_at(0, 2, 4), @ph.filter_out_descendants(paths)
end