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

class FileUpdateCheckerTest < ActiveSupport::TestCase
  include FileUpdateCheckerWithEnumerableTestCases

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