1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-27 01:52:55 -05:00
2023-02-18 03:24:16 +01:00

17 lines
344 B
Ruby

# 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_a Settings::ScopedSettings
end
end
end