aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2015-12-09 03:07:49 +0100
committerXavier Noria <fxn@hashref.com>2015-12-09 03:07:49 +0100
commit92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb (patch)
tree312dce7c4e613094ced1ae963bbff4b2f4962593 /activesupport/test
parenta61e4ae58d65d43a97e90bdb02b6c407791e3c53 (diff)
downloadrails-92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb.tar.gz
rails-92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb.tar.bz2
rails-92a9744f8132f46b0e5f49fa5b4d8c66b4e861cb.zip
renames AS::FileEventedUpdateChecker to AS::EventedFileUpdateChecker
Better English.
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/evented_file_update_checker_test.rb (renamed from activesupport/test/file_evented_update_checker_test.rb)8
1 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/test/file_evented_update_checker_test.rb b/activesupport/test/evented_file_update_checker_test.rb
index ec3a7e28f3..bc3f77bd54 100644
--- a/activesupport/test/file_evented_update_checker_test.rb
+++ b/activesupport/test/evented_file_update_checker_test.rb
@@ -2,7 +2,7 @@ require 'abstract_unit'
require 'pathname'
require 'file_update_checker_shared_tests'
-class FileEventedUpdateCheckerTest < ActiveSupport::TestCase
+class EventedFileUpdateCheckerTest < ActiveSupport::TestCase
include FileUpdateCheckerSharedTests
def setup
@@ -11,7 +11,7 @@ class FileEventedUpdateCheckerTest < ActiveSupport::TestCase
end
def new_checker(files = [], dirs = {}, &block)
- ActiveSupport::FileEventedUpdateChecker.new(files, dirs, &block).tap do
+ ActiveSupport::EventedFileUpdateChecker.new(files, dirs, &block).tap do
wait
end
end
@@ -36,13 +36,13 @@ class FileEventedUpdateCheckerTest < ActiveSupport::TestCase
end
end
-class FileEventedUpdateCheckerPathHelperTest < ActiveSupport::TestCase
+class EventedFileUpdateCheckerPathHelperTest < ActiveSupport::TestCase
def pn(path)
Pathname.new(path)
end
setup do
- @ph = ActiveSupport::FileEventedUpdateChecker::PathHelper.new
+ @ph = ActiveSupport::EventedFileUpdateChecker::PathHelper.new
end
test '#xpath returns the expanded path as a Pathname object' do