basic mom directory structure and a readme

This commit is contained in:
Torsten Ruger
2017-04-10 11:47:18 +03:00
parent b2775455e1
commit 0233e91355
7 changed files with 101 additions and 1 deletions

1
test/mom/helper.rb Normal file
View File

@ -0,0 +1 @@
require_relative "../helper"

1
test/mom/test_all.rb Normal file
View File

@ -0,0 +1 @@
require_relative "test_instruction"

View File

@ -0,0 +1,10 @@
require_relative "helper"
module Mom
class TestInstruction < MiniTest::Test
def test_class_exists
assert Instruction.new
end
end
end