Module: Oncall::Core

Defined in:
lib/oncall/core.rb,
lib/oncall/core/group.rb,
lib/oncall/core/world.rb,
lib/oncall/core/config.rb,
lib/oncall/core/runner.rb,
lib/oncall/core/request.rb,
lib/oncall/core/wrapper.rb,
lib/oncall/core/reporter.rb,
lib/oncall/core/scenario.rb,
lib/oncall/core/assertion.rb

Defined Under Namespace

Classes: Assertion, Config, Group, Reporter, Request, Runner, Scenario, World, Wrapper

Constant Summary collapse

STATUS_EMPTY =
:empty

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configObject



19
20
21
# File 'lib/oncall/core.rb', line 19

def self.config
  @config ||= Oncall::Core::Config.new
end

.worldObject



23
24
25
# File 'lib/oncall/core.rb', line 23

def self.world
  @world ||= Oncall::Core::World.new
end

Class Method Details

.reporterObject



27
28
29
# File 'lib/oncall/core.rb', line 27

def self.reporter
  @reporter ||= Oncall::Core::Reporter.new
end