class FileUpdateCheckerTest
Public Instance Methods
new_checker(files = [], dirs = {}, &block)
click to toggle source
# File activesupport/test/file_update_checker_test.rb, line 9 def new_checker(files = [], dirs = {}, &block) ActiveSupport::FileUpdateChecker.new(files, dirs, &block) end
touch(files)
click to toggle source
Calls superclass method
# File activesupport/test/file_update_checker_test.rb, line 17 def touch(files) sleep 1 # let's wait a bit to ensure there's a new mtime super end
wait()
click to toggle source
# File activesupport/test/file_update_checker_test.rb, line 13 def wait # noop end