Module: Quickdraw

Defined in:
lib/quickdraw.rb,
lib/quickdraw/version.rb

Defined Under Namespace

Modules: Error, Matchers Classes: ArgumentError, Cluster, Configuration, Context, Expectation, Map, Pipe, Queue, Registry, Run, Runner, TestFailure, Timer, Worker

Constant Summary collapse

SUCCESS_EMOJI =
%w[💃 🕺 🎉 🎊 💪 👏 🙌  🥳 🎈 🌈 🎯 🏆]
Null =
Object.new.freeze
Config =
Configuration.new
VERSION =
"0.1.0"

Class Method Summary collapse

Class Method Details

.configure(&block) ⇒ Object



33
34
35
36
37
38
39
# File 'lib/quickdraw.rb', line 33

def self.configure(&block)
	if block.arity == 0
		Config.instance_eval(&block)
	else
		yield Config
	end
end