Sha256: 2937751a77488657f05af38df85bf4dd103cd1658d3f21c1e1b22a1ba859645b
Contents?: true
Size: 1004 Bytes
Versions: 1
Compression:
Stored size: 1004 Bytes
Contents
module CustomMatchers class BeEachWithin < RSpec::Matchers::BuiltIn::BeWithin def matches?(target) target.zip(@expected).all? { |a, b| (a - b).abs <= @delta } end def description "be each within #{@delta} of the parallel elements in #{@expected}" end end def be_each_within(tolerance) BeEachWithin.new(tolerance) end end class Symbol def to_writer "#{self}=".intern end end Dir["./spec/support/**/*.rb"].each { |f| require f } require 'seal' include Seal TOLERANCE = 0.00001 FIXTURE_DIR = File.join File.dirname(__FILE__), 'fixtures' WAV_PATH = File.join FIXTURE_DIR, 'tone_up.wav' OV_PATH = File.join FIXTURE_DIR, 'heal.ogg' RSpec.configure do |config| config.include CustomMatchers config.alias_it_should_behave_like_to :it_validates, 'validates that' config.alias_it_should_behave_like_to :it_defines, 'defines' config.instance_eval do before :all do Seal.startup end after :all do Seal.cleanup end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
seal-0.1.1 | spec/spec_helper.rb |