Torsten Rüger
41eccb9382
Instead of loading all preload for all tests, adding just those functions that are needed for each. Should reduce test times. Also renaming tests to give some indication of difficulty. Alas they are not run in that order.
24 lines
308 B
Ruby
24 lines
308 B
Ruby
class Integer < Data4
|
|
def <(right)
|
|
X.comparison(:<)
|
|
end
|
|
end
|
|
class Word < Data8
|
|
def putstring
|
|
X.putstring
|
|
end
|
|
end
|
|
class Space
|
|
def if_small( n )
|
|
if( n < 10)
|
|
return 10
|
|
else
|
|
"large".putstring
|
|
return 20
|
|
end
|
|
end
|
|
def main(arg)
|
|
return if_small( 12 )
|
|
end
|
|
end
|