summaryrefslogtreecommitdiff
path: root/spec/models/concerns/has_user_type_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/concerns/has_user_type_spec.rb')
-rw-r--r--spec/models/concerns/has_user_type_spec.rb8
1 files changed, 1 insertions, 7 deletions
diff --git a/spec/models/concerns/has_user_type_spec.rb b/spec/models/concerns/has_user_type_spec.rb
index b2ea7b22dea..462b28f99be 100644
--- a/spec/models/concerns/has_user_type_spec.rb
+++ b/spec/models/concerns/has_user_type_spec.rb
@@ -5,7 +5,7 @@ require 'spec_helper'
RSpec.describe User do
specify 'types consistency checks', :aggregate_failures do
expect(described_class::USER_TYPES.keys)
- .to match_array(%w[human ghost alert_bot project_bot support_bot service_user security_bot visual_review_bot migration_bot automation_bot])
+ .to match_array(%w[human ghost alert_bot project_bot support_bot service_user security_bot visual_review_bot migration_bot automation_bot admin_bot])
expect(described_class::USER_TYPES).to include(*described_class::BOT_USER_TYPES)
expect(described_class::USER_TYPES).to include(*described_class::NON_INTERNAL_USER_TYPES)
expect(described_class::USER_TYPES).to include(*described_class::INTERNAL_USER_TYPES)
@@ -37,12 +37,6 @@ RSpec.describe User do
end
end
- describe '.bots_without_project_bot' do
- it 'includes all bots except project_bot' do
- expect(described_class.bots_without_project_bot).to match_array(bots - [project_bot])
- end
- end
-
describe '.non_internal' do
it 'includes all non_internal users' do
expect(described_class.non_internal).to match_array(non_internal)