Skip to content

Instantly share code, notes, and snippets.

@ivliaspiration
Created April 14, 2012 19:50
Show Gist options
  • Save ivliaspiration/2387470 to your computer and use it in GitHub Desktop.
Save ivliaspiration/2387470 to your computer and use it in GitHub Desktop.
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