Browse Source

Add a test for Settings::Extend#settings (#5720)

pull/4/head
ysksn 6 years ago
committed by Eugen Rochko
parent
commit
8f638a2bf2
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      spec/lib/settings/extend_spec.rb

+ 16
- 0
spec/lib/settings/extend_spec.rb View 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…
Cancel
Save