Extensive Namespacing of model specs
[merb_mart.git] / spec / models / country_spec.rb
blobb56debcac6e61a0ec1ae8af80ba0d14f4cde3064
1 require File.join( File.dirname(__FILE__), "..", "spec_helper" )
3 describe Country do
5   before(:each) do
6     @country = Country.new
7   end
9   it "should be valid" do
10     @country.name = "Andorra"
11     @country.should be_valid
12   end
13   
14   it "should have a name field" do
15     @country.valid?
16     @country.errors.on(:name).should_not be_nil
17   end
18   
19   it "should have a code field" do
20     @country.name = "Lithuania"
21     @country.code = "LT"
22     @country.should be_valid
23   end
24   
25   describe "finders" do
26     
27   end
28   
29 end