Sha256: 94743fd413dc3fc73fc2b507da433af36184d90e05b3bb5107b44deb20c868fa

Contents?: true

Size: 386 Bytes

Versions: 3

Compression:

Stored size: 386 Bytes

Contents

#!/usr/bin/ruby
# Jonathan D. Stott <jonathan.stott@gmail.com>
require 'bacon'

Bacon.summary_on_exit

class Bacon::Context
  def node_inequality(left, right)
    it "`#{left.inspect}' != `#{right.inspect}`" do
      left.should.not == right
    end
  end
  def node_equality(left, right)
    it "`#{left.inspect}' == `#{right.inspect}`" do
      left.should == right
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
exalted_math-0.2.2 spec/spec_helper.rb
exalted_math-0.2.1 spec/spec_helper.rb
exalted_math-0.2.0 spec/spec_helper.rb