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