11 lines
153 B
Ruby
11 lines
153 B
Ruby
|
require_relative "helper"
|
||
|
|
||
|
module Mom
|
||
|
class TestInstruction < MiniTest::Test
|
||
|
|
||
|
def test_class_exists
|
||
|
assert Instruction.new
|
||
|
end
|
||
|
end
|
||
|
end
|