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

MTIME_FIXTURES_PATH = File.expand_path("../fixtures", __FILE__)

class FileUpdateCheckerWithEnumerableTest < ActiveSupport::TestCase
  include FileUpdateCheckerWithEnumerableTestCases
  def build_new_watcher(files, dirs={}, &block)
    ActiveSupport::FileUpdateChecker.new(files, dirs, &block)
  end
end