Module: MetaRuby::SelfTest

Included in:
Minitest::Test
Defined in:
lib/metaruby/test.rb

Overview

This module is the common setup for all tests

It is included in all the minitest tests

Examples:

require 'metaruby/test'
describe MetaRuby do
    # Use helpers methods from SelfTest here
end

Instance Method Summary collapse

Instance Method Details

#setupObject

Common setup code for all metaruby tests



50
51
# File 'lib/metaruby/test.rb', line 50

def setup
end

#teardownObject

Common teardown code for all metaruby tests



54
55
# File 'lib/metaruby/test.rb', line 54

def teardown
end