Created
June 22, 2010 16:55
-
-
Save teejayvanslyke/448743 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
| describe Sevis::Student do | |
| subject { Sevis::Student.new } | |
| context "when creating" do | |
| context "and its first name is not specified" do | |
| before { Sevis::Student.first_name = nil } | |
| it { should_not be_valid } | |
| specify { subject.errors.size.should_not be_empty } | |
| end | |
| end | |
| ... | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment