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.
11 lines
134 B
Ruby
11 lines
134 B
Ruby
class Word < Data8
|
|
def putstring
|
|
X.putstring
|
|
end
|
|
end
|
|
class Space
|
|
def main(arg)
|
|
return "Hello-there".putstring
|
|
end
|
|
end
|