Updated path references to spec_helper
[merb_mart.git] / app / models / country.rb
blobacd6e6018aff54fb68150fe3c073e8856de0983b
2 # A representation of a Country or dependent area, consisting of a name and
3 # ISO 3166-1 geographic code.
5 class Country
6   
7   include DataMapper::Resource
8   include DataMapper::Validate
9   
10   property :code, String, :serial => true, :length => 2     # ISO 3166-1 alpha-2
11   property :name, String, :length => 100,  :nullable => false
13 end