Skip to content

Instantly share code, notes, and snippets.

@asonas
Created April 25, 2014 03:08
Show Gist options
  • Select an option

  • Save asonas/11276653 to your computer and use it in GitHub Desktop.

Select an option

Save asonas/11276653 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe Account do
describe "#test" do
let(:user_a) { "aaa" }
let(:user_b) { "bbb" }
#it { expect(user_a).to eq(user_b) }
it { "aaa".should eq("bbb")}
end
end
Account
  #test
    example at ./spec/models/account_spec.rb:8

Finished in 0.27675 seconds
1 example, 0 failures
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment