aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2015-11-27 01:29:53 -0800
committerGodfrey Chan <godfreykfc@gmail.com>2015-11-27 01:32:38 -0800
commit9d7d12c0044751a494162760cd018fb66eab200f (patch)
tree1ea2bec82a759a65cb982d2917ded8d1546407f7 /activesupport
parent6be6d8d234015fb753db5b5f7c195d5d08e13e10 (diff)
downloadrails-9d7d12c0044751a494162760cd018fb66eab200f.tar.gz
rails-9d7d12c0044751a494162760cd018fb66eab200f.tar.bz2
rails-9d7d12c0044751a494162760cd018fb66eab200f.zip
Partially revert 14b20ce
The failure have returned, so disabling the tests again. (The upgrade is fine to keep.)
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/file_evented_update_checker_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/test/file_evented_update_checker_test.rb b/activesupport/test/file_evented_update_checker_test.rb
index 071449d399..ec3a7e28f3 100644
--- a/activesupport/test/file_evented_update_checker_test.rb
+++ b/activesupport/test/file_evented_update_checker_test.rb
@@ -5,6 +5,11 @@ require 'file_update_checker_shared_tests'
class FileEventedUpdateCheckerTest < ActiveSupport::TestCase
include FileUpdateCheckerSharedTests
+ def setup
+ skip if ENV['LISTEN'] == '0'
+ super
+ end
+
def new_checker(files = [], dirs = {}, &block)
ActiveSupport::FileEventedUpdateChecker.new(files, dirs, &block).tap do
wait