Skip to content

Instantly share code, notes, and snippets.

@myabc
Created November 21, 2009 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myabc/240158 to your computer and use it in GitHub Desktop.
Save myabc/240158 to your computer and use it in GitHub Desktop.

RSpec to Bacon Porting Checklist

RSpec Bacon
before :all -
before :each do before do
it { } it 'should ..' do end
should raise_error should.raise
should_not raise_error should.not.raise
should be_close should.be.close
should be_a should.be.kind_of
should be_false should.be.false
should be_true should.be.true
should be_kind_of should.be.kind_of
should be_nil should.be.nil
should respond_to should.respond_to
should eql should ==
should equal should.be.same_as
should satisfy should.satisfy

pending | should.flunk |

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment