diff options
author | Johan Sørensen <johan@johansorensen.com> | 2007-12-13 23:07:42 +0100 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2007-12-13 23:07:42 +0100 |
commit | a9ebd2bc58bb11a5fba462f82460fee83fd4426f (patch) | |
tree | d99045110e53fb2d9b6e28c20b07f2f536a2b45b /spec/models/committership_spec.rb | |
parent | 3a6a9d6525c3bc57babc0a858f1fe4db0b5714f7 (diff) | |
download | gitorious-mainline-outdated-a9ebd2bc58bb11a5fba462f82460fee83fd4426f.zip gitorious-mainline-outdated-a9ebd2bc58bb11a5fba462f82460fee83fd4426f.tar.gz gitorious-mainline-outdated-a9ebd2bc58bb11a5fba462f82460fee83fd4426f.tar.bz2 |
rename Permission to Committership
Diffstat (limited to 'spec/models/committership_spec.rb')
-rw-r--r-- | spec/models/committership_spec.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/models/committership_spec.rb b/spec/models/committership_spec.rb new file mode 100644 index 0000000..c242d19 --- /dev/null +++ b/spec/models/committership_spec.rb @@ -0,0 +1,11 @@ +require File.dirname(__FILE__) + '/../spec_helper' + +describe Committership do + before(:each) do + @committership = Committership.new + end + + it "should be valid" do + @committership.should be_valid + end +end |