Removing preloads from mains tests

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.
This commit is contained in:
2019-09-24 22:05:38 +03:00
parent 1022390e0f
commit 41eccb9382
24 changed files with 153 additions and 44 deletions

View File

@ -0,0 +1,10 @@
class Integer < Data4
def +(right)
X.int_operator(:+)
end
end
class Space
def main(arg)
return 2 + 2
end
end