Added .active? to Import backends default API for e.g. monitoring checks.
This commit is contained in:
parent
7dc2875a49
commit
ef1236b3ab
2 changed files with 18 additions and 0 deletions
|
@ -3,6 +3,17 @@
|
||||||
module Import
|
module Import
|
||||||
class Base
|
class Base
|
||||||
|
|
||||||
|
# Checks if the backend is active.
|
||||||
|
#
|
||||||
|
# @example
|
||||||
|
# Import::ExampleBackend.active?
|
||||||
|
# #=> true
|
||||||
|
#
|
||||||
|
# return [Boolean]
|
||||||
|
def self.active?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
# Checks if the backend is able to get queued by the Scheduler.
|
# Checks if the backend is able to get queued by the Scheduler.
|
||||||
#
|
#
|
||||||
# @example
|
# @example
|
||||||
|
|
|
@ -4,6 +4,13 @@ require 'lib/import/import_job_backend_examples'
|
||||||
RSpec.describe Import::Base do
|
RSpec.describe Import::Base do
|
||||||
it_behaves_like 'ImportJob backend'
|
it_behaves_like 'ImportJob backend'
|
||||||
|
|
||||||
|
describe '#active?' do
|
||||||
|
|
||||||
|
it 'returns true by default' do
|
||||||
|
expect(described_class.active?).to be true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe '#queueable?' do
|
describe '#queueable?' do
|
||||||
|
|
||||||
it 'returns true by default' do
|
it 'returns true by default' do
|
||||||
|
|
Loading…
Reference in a new issue