Skip to content

Instantly share code, notes, and snippets.

@workmad3
Forked from tubbo/post_spec.rb
Created December 19, 2010 22:47
Show Gist options
  • Save workmad3/747782 to your computer and use it in GitHub Desktop.
Save workmad3/747782 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe Post do
context "A post (in general)" do
subject {Post.new}
it {should validate_presence_of :title}
it {should validate_presence_of :body}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment