Created
April 14, 2012 19:50
-
-
Save ivliaspiration/2387470 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 Person do | |
before(:each) { @person = Person.new(name: "John", description: "cool guy") } | |
it { @person.should be_valid } | |
it 'validates name' do | |
@person.name = '' | |
@person.should_not be_valid | |
end | |
it 'validates description' do | |
@person.description = '' | |
@person.should_not be_valid | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment