aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/file_evented_update_checker_test.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-11-11 10:18:43 +0100
committerXavier Noria <fxn@hashref.com>2015-11-11 10:18:43 +0100
commit472b8e054b293c3c4a07572bd2d4904d51d861e0 (patch)
tree2b438b0d7fe03ae995978f04d3a3d2aa19a19d95 /activesupport/test/file_evented_update_checker_test.rb
parente42a5fd3d579f60594fbed2f0f728e434da123b9 (diff)
downloadrails-472b8e054b293c3c4a07572bd2d4904d51d861e0.tar.gz
rails-472b8e054b293c3c4a07572bd2d4904d51d861e0.tar.bz2
rails-472b8e054b293c3c4a07572bd2d4904d51d861e0.zip
revises the implementation of Pathname#ascendant_of? (in refinement)
Diffstat (limited to 'activesupport/test/file_evented_update_checker_test.rb')
-rw-r--r--activesupport/test/file_evented_update_checker_test.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/activesupport/test/file_evented_update_checker_test.rb b/activesupport/test/file_evented_update_checker_test.rb
index 9d09cbca8f..071449d399 100644
--- a/activesupport/test/file_evented_update_checker_test.rb
+++ b/activesupport/test/file_evented_update_checker_test.rb
@@ -118,4 +118,33 @@ class FileEventedUpdateCheckerPathHelperTest < ActiveSupport::TestCase
assert_equal paths.values_at(0, 2, 4), @ph.filter_out_descendants(paths)
end
+
+ test '#filter_out_descendants works on path units' do
+ paths = %w(
+ /foo/bar
+ /foo/barrrr
+ ).map { |path| pn(path) }
+
+ assert_equal paths, @ph.filter_out_descendants(paths)
+ end
+
+ test '#filter_out_descendants deals correctly with the root directory' do
+ paths = %w(
+ /
+ /foo
+ /foo/bar
+ ).map { |path| pn(path) }
+
+ assert_equal paths.values_at(0), @ph.filter_out_descendants(paths)
+ end
+
+ test '#filter_out_descendants preserves duplicates' do
+ paths = %w(
+ /foo
+ /foo/bar
+ /foo
+ ).map { |path| pn(path) }
+
+ assert_equal paths.values_at(0, 2), @ph.filter_out_descendants(paths)
+ end
end