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:
28
test/mains/source/35_times_11111_5.rb
Normal file
28
test/mains/source/35_times_11111_5.rb
Normal file
@ -0,0 +1,28 @@
|
||||
class Integer < Data4
|
||||
def <(right)
|
||||
X.comparison(:<)
|
||||
end
|
||||
def +(right)
|
||||
X.int_operator(:+)
|
||||
end
|
||||
end
|
||||
class Word < Data8
|
||||
def putstring
|
||||
X.putstring
|
||||
end
|
||||
end
|
||||
class Space
|
||||
def times(n)
|
||||
i = 0
|
||||
while( i < n )
|
||||
yield
|
||||
i = i + 1
|
||||
end
|
||||
return n
|
||||
end
|
||||
def main(arg)
|
||||
return times(5) {
|
||||
"1".putstring
|
||||
}
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user