blob: 389153d138e2759376ff284a104a6d504704442f (
plain)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Oauth::TokensController do
it 'includes Two-factor enforcement concern' do
expect(described_class.included_modules.include?(EnforcesTwoFactorAuthentication)).to eq(true)
end
end
|