Skip to content

Instantly share code, notes, and snippets.

@sandsu
Created October 15, 2012 23:11
Show Gist options
  • Save sandsu/3896254 to your computer and use it in GitHub Desktop.
Save sandsu/3896254 to your computer and use it in GitHub Desktop.
# encoding: utf-8
require 'spec_helper'
describe Comment do
describe "#valid?" do
it "true when user is valid" do
user = User.new(:valid=>true)
Comment.new(:user=>user).should be_valid
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment