Sha256: 06998b0ee706f2f8bb97930e17bd30fc42efbb753f5ab1520288f36b03f65b78
Contents?: true
Size: 787 Bytes
Versions: 2
Compression:
Stored size: 787 Bytes
Contents
if ENV["TRAVIS"] require "coveralls" Coveralls.wear!("rails") end require "action_controller_tweaks" require "fixtures/application" require "fixtures/controllers" require "rspec/rails" require "rspec/its" require "timecop" require "logger" # see https://github.com/rspec/rspec-rails/issues/1171 # prevent Test::Unit"s AutoRunner from executing during RSpec"s rake task Test::Unit.run = true if defined?(Test::Unit) && Test::Unit.respond_to?(:run=) # For comparison class Hash def deep_include?(sub_hash) sub_hash.keys.all? do |key| next unless self.key?(key) if sub_hash[key].is_a?(Hash) self[key].is_a?(Hash) && self[key].deep_include?(sub_hash[key]) else self[key] == sub_hash[key] end end end end RSpec.configure do end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
action_controller_tweaks-0.3.3 | spec/spec_helper.rb |
action_controller_tweaks-0.3.2 | spec/spec_helper.rb |