Whitespace cleanup
[merb_mart.git] / spec / models / role_spec.rb
blob593cc4c9e47154989f7e1713287d35f442c9aeda
1 require File.join( File.dirname(__FILE__), "..", "spec_helper" )
3 describe Role do
5   describe "associations" do
6     it "should have and belong to many users" do
7       role = Role.new
8       pending
9       #role.should respond_to(:users)
10       #role.should respond_to(:users=)
11     end
13     it "should have and belong to many rights" do
14       role = Role.new
15       #role.should respond_to(:rights)
16       #role.should respond_to(:rights=)
17     end
18   end
20   it "should allow rights to be set by a list of right ids" do
21     pending
22   end
24 end