Sha256: 0a3122cb01fa624cd1a656d417d666ff29b83e49cc7973f616d72dcf2a952f6a
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
require File.dirname(__FILE__) + '/spec_helper' describe 'properties' do it "should return the property names" do Comment.property_names.should == [:title, :commenter] end it "should persist a string" do c = Comment.new :title => 'my title' c.save! c = Comment.find c.id c.title.should == 'my title' end it "should persist a number" do c = Comment.new :title => 3 c.save! c = Comment.find c.id c.title.should == 3 end it "should persist a hash" do c = Comment.new :title => {'key' => 'value'} c.save! c = Comment.find c.id c.title.should == {'key' => 'value'} end describe "predicate" do it "should return true if property set" do Comment.new(:title => 'title').title?.should be_true end it "should return false if property nil" do Comment.new.title?.should be_false end it "should return false if property false" do Comment.new(:title => false).title?.should be_false end it "should return false if property blank" do Comment.new(:title => '').title?.should be_false end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
langalex-couch_potato-0.1 | spec/property_spec.rb |