discourse/spec/lib/trust_level_spec.rb
Jarek Radosz 45cc16098d
DEV: Move spec/components to spec/lib (#15987)
Lib specs were inexplicably split into two directories (`lib` and `components`)

This moves them all into `lib`.
2022-02-18 19:41:54 +01:00

22 lines
423 B
Ruby

# frozen_string_literal: true
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