mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 05:13:01 +00:00
Add a test for Settings::Extend#settings (#5720)
This commit is contained in:
parent
9d9b1aff1e
commit
8f638a2bf2
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