mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
19 lines
392 B
Ruby
19 lines
392 B
Ruby
require 'rails_helper'
|
|
|
|
describe TrustLevel do
|
|
describe 'levels' do
|
|
context "verify enum sequence" do
|
|
before do
|
|
@levels = TrustLevel.levels
|
|
end
|
|
|
|
it "'newuser' should be at 0 position" do
|
|
expect(@levels[:newuser]).to eq(0)
|
|
end
|
|
|
|
it "'leader' should be at 4th position" do
|
|
expect(@levels[:leader]).to eq(4)
|
|
end
|
|
end
|
|
end
|
|
end
|