Files
discourse/spec/models/user_second_factor_spec.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
267 B
Ruby
Raw Normal View History

# frozen_string_literal: true
RSpec.describe UserSecondFactor do
describe '.methods' do
it 'should retain the right order' do
expect(described_class.methods[:totp]).to eq(1)
2018-06-28 10:12:32 +02:00
expect(described_class.methods[:backup_codes]).to eq(2)
end
end
end