module TestBench::Fixture::Controls::Output::Log::Level

Public Class Methods

debug() click to toggle source
# File lib/test_bench/fixture/controls/output/log.rb, line 31
def self.debug
  :debug
end
error() click to toggle source
# File lib/test_bench/fixture/controls/output/log.rb, line 19
def self.error
  :error
end
example() click to toggle source
# File lib/test_bench/fixture/controls/output/log.rb, line 7
def self.example
  fatal
end
fatal() click to toggle source
# File lib/test_bench/fixture/controls/output/log.rb, line 15
def self.fatal
  :fatal
end
info() click to toggle source
# File lib/test_bench/fixture/controls/output/log.rb, line 27
def self.info
  :info
end
unknown() click to toggle source
# File lib/test_bench/fixture/controls/output/log.rb, line 11
def self.unknown
  :unknown
end
warning() click to toggle source
# File lib/test_bench/fixture/controls/output/log.rb, line 23
def self.warning
  :warning
end