class Soryo::Tester

Public Class Methods

descendants() click to toggle source
# File lib/testers/tester.rb, line 4
def self.descendants
    descendants = []
    ObjectSpace.each_object(singleton_class) do |k|
        descendants.unshift k unless k == self
    end
    descendants
end
new() click to toggle source
# File lib/testers/tester.rb, line 12
def initialize
end

Public Instance Methods

run(email, options) click to toggle source
# File lib/testers/tester.rb, line 19
def run(email, options)
    abort('Tester.run should not be called directly')
end
tester_name() click to toggle source
# File lib/testers/tester.rb, line 15
def tester_name
    abort('Tester.tester_name should not be run directly')
end