diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-11-21 07:14:05 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-11-21 07:14:05 +0300 |
commit | f614ae8ef71bf1de7deeeaadbdf9a4a8614771b1 (patch) | |
tree | f09dbedbc6818c5f993fe9889391dcbd71fdfb98 /spec/models/group_spec.rb | |
parent | e9be4b375bf2e4929ca82d06ff0dd4b62c5e9c44 (diff) | |
download | gitlab-ce-f614ae8ef71bf1de7deeeaadbdf9a4a8614771b1.tar.gz |
Increased test coverage
Diffstat (limited to 'spec/models/group_spec.rb')
-rw-r--r-- | spec/models/group_spec.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/models/group_spec.rb b/spec/models/group_spec.rb index 80583243a2f..884726266cb 100644 --- a/spec/models/group_spec.rb +++ b/spec/models/group_spec.rb @@ -22,4 +22,12 @@ describe Group do it { should validate_presence_of :path } it { should validate_uniqueness_of(:path) } it { should validate_presence_of :owner } + + describe :users do + it { group.users.should == [] } + end + + describe :human_name do + it { group.human_name.should == group.name } + end end |