aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2015-11-26 10:31:52 -0800
committerGodfrey Chan <godfreykfc@gmail.com>2015-11-26 10:35:20 -0800
commit14b20ce9b38314943dcaf73b8dab7508b70ba487 (patch)
tree884ee57041753f4d4eea7b458ffe10ff7c4ece08 /activesupport
parente3bac3fa19447dbc6f041417356c56122fcc66fd (diff)
downloadrails-14b20ce9b38314943dcaf73b8dab7508b70ba487.tar.gz
rails-14b20ce9b38314943dcaf73b8dab7508b70ba487.tar.bz2
rails-14b20ce9b38314943dcaf73b8dab7508b70ba487.zip
Upgrade to listen 3.0.5, re-enable tests
In listen 3.0.4 and below, the `#stop` method on the notification backends are a no-op, meaning that we are leaking them per test. This ended up triggering another bug in Ruby that causes our builds to fail randomly on CI. listen bug: https://github.com/guard/listen/issues/353 ruby bug: https://bugs.ruby-lang.org/issues/11744
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/file_evented_update_checker_test.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activesupport/test/file_evented_update_checker_test.rb b/activesupport/test/file_evented_update_checker_test.rb
index ec3a7e28f3..071449d399 100644
--- a/activesupport/test/file_evented_update_checker_test.rb
+++ b/activesupport/test/file_evented_update_checker_test.rb
@@ -5,11 +5,6 @@ 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