Add a test for Settings::Extend#settings (#5720)
This commit is contained in:
parent
9d9b1aff1e
commit
8f638a2bf2
1 changed files with 16 additions and 0 deletions
16
spec/lib/settings/extend_spec.rb
Normal file
16
spec/lib/settings/extend_spec.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Settings::Extend do
|
||||
class User
|
||||
include Settings::Extend
|
||||
end
|
||||
|
||||
describe '#settings' do
|
||||
it 'sets @settings as an instance of Settings::ScopedSettings' do
|
||||
user = Fabricate(:user)
|
||||
expect(user.settings).to be_kind_of Settings::ScopedSettings
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue