mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
203998c916
also: - makes test dependencies obvious - makes tests runnable from within subfolders
21 lines
458 B
Ruby
21 lines
458 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "abstract_unit"
|
|
require_relative "file_update_checker_shared_tests"
|
|
|
|
class FileUpdateCheckerTest < ActiveSupport::TestCase
|
|
include FileUpdateCheckerSharedTests
|
|
|
|
def new_checker(files = [], dirs = {}, &block)
|
|
ActiveSupport::FileUpdateChecker.new(files, dirs, &block)
|
|
end
|
|
|
|
def wait
|
|
# noop
|
|
end
|
|
|
|
def touch(files)
|
|
sleep 1 # let's wait a bit to ensure there's a new mtime
|
|
super
|
|
end
|
|
end
|