mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
11 lines
323 B
Ruby
11 lines
323 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
RSpec.shared_examples 'Import::ImportStats' do
|
|
it 'responds to current_state' do
|
|
expect(described_class).to respond_to('current_state')
|
|
end
|
|
|
|
it 'responds to statistic' do
|
|
expect(described_class).to respond_to('statistic')
|
|
end
|
|
end
|