module Clockwork::Test

Constants

VERSION

Public Class Methods

included(klass) click to toggle source
# File lib/clockwork/test.rb, line 35
def included(klass)
  klass.send "include", Methods
  klass.extend Methods

  klass.send "include", ::Clockwork::Methods
  klass.extend ::Clockwork::Methods
end
manager() click to toggle source
# File lib/clockwork/test.rb, line 43
def manager
  @manager ||= Clockwork::Test::Manager.new
end
manager=(manager) click to toggle source
# File lib/clockwork/test.rb, line 47
def manager=(manager)
  @manager = manager
end