getting some sof output and adding some tests. issues though. abound
This commit is contained in:
17
test/sof.rb
Normal file
17
test/sof.rb
Normal file
@ -0,0 +1,17 @@
|
||||
require_relative "helper"
|
||||
|
||||
class SimpleObjectWithAttributes
|
||||
end
|
||||
|
||||
class BasicSof < MiniTest::Test
|
||||
|
||||
def test_true
|
||||
out = Sof::Members.write(true)
|
||||
assert_equal " true\n" , out
|
||||
end
|
||||
def test_num
|
||||
out = Sof::Members.write(124)
|
||||
assert_equal " 124\n" , out
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user