require_relative "virtual_helper" class TestMethods < MiniTest::Test include VirtualHelper #TODO need to rethink this approach # Sof working as well as it is will serialize the whole space as everythink is reachable from a # method. Even ignoring the size and readability issues, it make sthe test to fragile: # any small object change anywhere in parfait will cause a different output def ttest_simplest_function @string_input = < 5) return 10 else return 20 end end HERE @output = "" check end def est_function_return_while @string_input = < 5) do n = n + 1 return n end end HERE @output = "" check end def pest_function_big_while @string_input = < 1 ) do tmp = a a = b b = tmp + b puts(b) n = n - 1 end end HERE @output = "" check end end