module Angelo::Minitest::Helpers::Cellper

Public Instance Methods

define_action(sym, &block) click to toggle source
# File lib/angelo/minitest/helpers.rb, line 111
def define_action sym, &block
  define_method sym, &block
end
remove_action(sym) click to toggle source
# File lib/angelo/minitest/helpers.rb, line 115
def remove_action sym
  remove_method sym
end
stop!() click to toggle source
# File lib/angelo/minitest/helpers.rb, line 123
def stop!
  @@stop = true
end
stop?() click to toggle source
# File lib/angelo/minitest/helpers.rb, line 127
def stop?
  @@stop
end
testers() click to toggle source
# File lib/angelo/minitest/helpers.rb, line 131
def testers; @@testers; end
unstop!() click to toggle source
# File lib/angelo/minitest/helpers.rb, line 119
def unstop!
  @@stop = false
end