Skip to content

Instantly share code, notes, and snippets.

@teejayvanslyke
Created June 22, 2010 16:55
Show Gist options
  • Select an option

  • Save teejayvanslyke/448743 to your computer and use it in GitHub Desktop.

Select an option

Save teejayvanslyke/448743 to your computer and use it in GitHub Desktop.
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