闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
236 B

  1. # frozen_string_literal: true
  2. shared_examples 'Settings-extended' do
  3. describe 'settings' do
  4. def fabricate
  5. super.settings
  6. end
  7. def create!
  8. super.settings
  9. end
  10. it_behaves_like 'ScopedSettings'
  11. end
  12. end