This commit is contained in:
Chris Anderson 2009-02-02 15:03:10 -08:00
parent 55cf741859
commit bd2dafd107

7
spec/fixtures/more/card.rb vendored Normal file
View file

@ -0,0 +1,7 @@
class Card < CouchRest::ExtendedDocument
use_database TEST_SERVER.default_database
property :first_name
property :last_name, :alias => :family_name
property :read_only_value, :read_only => true
end