getting some sof output and adding some tests. issues though. abound

This commit is contained in:
Torsten Ruger
2014-08-14 17:40:56 +03:00
parent 7e60827dd3
commit 2c2ae14928
7 changed files with 104 additions and 23 deletions

17
test/sof.rb Normal file
View 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