aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/file_update_checker_test.rb
blob: de6b51823e2ca321cdff44d61f77b276ef28b9c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
require 'abstract_unit'
require 'file_update_checker_with_enumerable_test_cases'

class FileUpdateCheckerTest < ActiveSupport::TestCase
  include FileUpdateCheckerWithEnumerableTestCases

  def new_checker(files=[], dirs={}, &block)
    ActiveSupport::FileUpdateChecker.new(files, dirs, &block)
  end
end