Account
#test
example at ./spec/models/account_spec.rb:8
Finished in 0.27675 seconds
1 example, 0 failures
Created
April 25, 2014 03:08
-
-
Save asonas/11276653 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment