7 lines
262 B
Ruby
7 lines
262 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
RSpec.shared_context 'factory' do # rubocop:disable RSpec/ContextWording
|
|
it 'saves successfully' do
|
|
expect(subject).to be_persisted # rubocop:disable RSpec/NamedSubject
|
|
end
|
|
end
|