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



47
48
# File 'lib/metaruby/test.rb', line 47

def setup
end

#teardownObject

Common teardown code for all metaruby tests



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

def teardown
end