Added validations available in dm-validations.
[merb_mart.git] / spec / models / page_spec.rb
blobba5d5385533acfe05a0cbf5cf8b3a4334c3fd9cc
1 require File.join( File.dirname(__FILE__), "..", "spec_helper" )
3 describe Page do
4   
5   it "should have a name and title" do
6     @page = Page.new
7     @page.should_not be_valid
8     @page.name = "interesting-content"
9     @page.title = "Interesting Content"
10     @page.should be_valid
11   end
12   
13   it "should have content"
14   it "should have a displayed on date"
15   it "should have a created on date"
17   it "should provide a url" do
18     @page = Page.new
19     @page.name = "my-page"
20     @page.title = "My Page"
21     @page.valid?
22     @page.url.should == "my-page"
23   end
25 end