first while test working

fixed logic error in test framework
This commit is contained in:
Torsten Ruger
2018-03-16 12:33:11 +05:30
parent ea882f403a
commit 35a0952943
9 changed files with 71 additions and 58 deletions

View File

@ -4,7 +4,7 @@ module Vool
def initialize( name , args , body , clazz = nil)
@name , @args , @body = name , args , body
raise "no bod" unless body
raise "no bod" unless @body
@clazz = clazz
end