split the tests in to files

This commit is contained in:
Torsten Ruger
2015-05-15 20:59:33 +03:00
parent 778d751c55
commit b5d44bf2f3
4 changed files with 39 additions and 130 deletions

View File

@ -14,3 +14,11 @@ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'test'))
require 'salama-object-file'
module Checker
def check should
same = (should == @out)
puts "Shouldda\n#{@out}" unless same
assert_equal should , @out
end
end