debian-mirror-gitlab/spec/support/shared_examples/controllers/concerns/graceful_timeout_handling_shared_examples.rb
2020-10-24 23:57:45 +05:30

7 lines
189 B
Ruby

# frozen_string_literal: true
RSpec.shared_examples GracefulTimeoutHandling do
it 'includes GracefulTimeoutHandling' do
expect(controller).to be_a(GracefulTimeoutHandling)
end
end