* Add mod channel automation to tags * Change mod_relations to mod_relations_admin * Run migration properly * Make queries consistent and fix test
19 lines
679 B
Ruby
19 lines
679 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Role, type: :model do
|
|
it { is_expected.to belong_to(:resource).optional }
|
|
it { is_expected.to validate_inclusion_of(:resource_type).in_array(Rolify.resource_types) }
|
|
it { is_expected.to validate_inclusion_of(:name).in_array(described_class::ROLES) }
|
|
|
|
describe "::ROLES" do
|
|
it "contains the correct values" do
|
|
expected_roles = %w[
|
|
admin banned chatroom_beta_tester comment_banned
|
|
podcast_admin pro single_resource_admin super_admin
|
|
tag_moderator mod_relations_admin tech_admin
|
|
trusted warned workshop_pass
|
|
]
|
|
expect(described_class::ROLES).to eq(expected_roles)
|
|
end
|
|
end
|
|
end
|