12 lines
179 B
Ruby
12 lines
179 B
Ruby
|
require_relative "helper"
|
||
|
|
||
|
module Mom
|
||
|
class TestAssignemnt < MiniTest::Test
|
||
|
include CompilerHelper
|
||
|
|
||
|
def test_class_exists
|
||
|
assert Instruction.new
|
||
|
end
|
||
|
end
|
||
|
end
|