Skip to content

Instantly share code, notes, and snippets.

@tatsuro-ueda
Created March 8, 2013 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tatsuro-ueda/5114750 to your computer and use it in GitHub Desktop.
Save tatsuro-ueda/5114750 to your computer and use it in GitHub Desktop.
# encoding: utf-8
require 'spec_helper'
describe Post, "#title が設定されていない場合:" do
# pending "add some examples to (or delete) #{__FILE__}"
before(:each) do
@post = Post.new
end
it "バリデーションに失敗すること" do
@post.should_not be_valid
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment