Created
October 15, 2012 23:11
-
-
Save sandsu/3896254 to your computer and use it in GitHub Desktop.
This file contains 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
# 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