aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/user_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/user_spec.rb')
-rw-r--r--spec/models/user_spec.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb
index 6925bb7e8..5c7aa0b98 100644
--- a/spec/models/user_spec.rb
+++ b/spec/models/user_spec.rb
@@ -124,22 +124,6 @@ describe User, :type => :model do
end
end
- describe 'validations' do
- it 'validates uniqueness of pemissions' do
- user = build :user, permissions: Array.new(2, 'calendars.shared')
- expect {
- user.save!
- }.to raise_error(ActiveRecord::RecordInvalid)
- end
-
- it 'validates no pemission is an empty string' do
- user = build :user, permissions: ['']
- expect {
- user.save!
- }.to raise_error(ActiveRecord::RecordInvalid)
- end
- end
-
describe "#destroy" do
let!(:organisation){create(:organisation)}
let!(:user){create(:user, :organisation => organisation)}