module Utilrb::SelfTest

This module is the common setup for all tests

It should be included in the toplevel describe blocks

@example

require 'dummyproject/test'
describe Utilrb do
  include Utilrb::SelfTest
end

Public Instance Methods

setup() click to toggle source
# File lib/utilrb/test.rb, line 49
def setup
    # Setup code for all the tests
end
teardown() click to toggle source
Calls superclass method
# File lib/utilrb/test.rb, line 53
def teardown
    super
    # Teardown code for all the tests
end