summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/controllers/concerns/graceful_timeout_handling_shared_examples.rb
blob: ea002776eeb69f0a67538ad877f4cc3dd3598145 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

RSpec.shared_examples GracefulTimeoutHandling do
  it 'includes GracefulTimeoutHandling' do
    expect(controller).to be_a(GracefulTimeoutHandling)
  end
end