spec/spec_helper.rb in rapporteur-3.3.0 vs spec/spec_helper.rb in rapporteur-3.4.0
- old
+ new
@@ -15,5 +15,10 @@
config.order = 'random'
config.before { Rapporteur.clear_checks }
end
+
+
+# This is a shim to allow for Ruby 1.9.3, Rails 3.2 testing to pass.
+# See https://github.com/rspec/rspec-rails/issues/1171.
+Test::Unit.run = true if defined?(Test::Unit) && Test::Unit.respond_to?(:run=)