class Soar::Registry::Directory::Test::Orchestrator

Public Class Methods

new(provider) click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 12
def initialize(provider)
  raise ArgumentError if provider.nil?
  @provider = provider
end

Public Instance Methods

duplicate_entry?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 49
def duplicate_entry?
  @provider.duplicate_entry?
end
fetch_entry() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 41
def fetch_entry
  @provider.fetch_entry
end
given_configured_directory() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 21
def given_configured_directory
  @provider.given_configured_directory
end
given_existing_data() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 17
def given_existing_data
  @provider.given_existing_data
end
index?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 61
def index?
  @provider.index?
end
networking_error?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 77
def networking_error?
  @provider.networking_error?
end
no_entries_found?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 69
def no_entries_found?
  @provider.no_entries_found?
end
no_matching_entries?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 73
def no_matching_entries?
  @provider.no_matching_entries?
end
persisted?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 53
def persisted?
  @provider.persisted?
end
put_duplicate_entry() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 33
def put_duplicate_entry
  @provider.put_duplicate_entry
end
put_entry() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 29
def put_entry
  @provider.put_entry
end
request_index() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 45
def request_index
  @provider.request_index
end
returned?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 57
def returned?
  @provider.returned?
end
sabotage_network() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 25
def sabotage_network
  @provider.sabotage_network
end
search_for_entry() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 37
def search_for_entry
  @provider.search_for_entry
end
single_entry?() click to toggle source
# File lib/soar/registry/directory/test/orchestrator.rb, line 65
def single_entry?
  @provider.single_entry?
end