adding functionality to list properties with values

This commit is contained in:
Lucas Renan 2010-11-10 22:33:46 -02:00
parent cc2b183946
commit 04ad16a396
3 changed files with 15 additions and 0 deletions

View file

@ -36,6 +36,11 @@ describe "Model properties" do
@card.properties.map{|p| p.name}.should include("first_name")
end
it "should list object properties with values" do
@card.properties_with_values.should be_an_instance_of(Hash)
@card.properties_with_values["first_name"].should == "matt"
end
it "should let you access a property value (getter)" do
@card.first_name.should == "matt"
end
@ -838,3 +843,4 @@ describe "Property Class" do
end
end