Skip to content

Instantly share code, notes, and snippets.

@fables-tales
Created February 11, 2014 22:43
Show Gist options
  • Save fables-tales/8945819 to your computer and use it in GitHub Desktop.
Save fables-tales/8945819 to your computer and use it in GitHub Desktop.
describe "doing things" do
let(:a) { double(:a) }
let(:b) { double(:b) }
let(:c) { [a,b] }
it "works" do
expect(c).to eq([a,b])
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment