2015-12-01 10:55:33 +01:00
|
|
|
require_relative 'helper'
|
|
|
|
|
2017-01-17 23:05:36 +01:00
|
|
|
module Rubyx
|
2017-01-11 18:18:04 +01:00
|
|
|
class TestRubyItos < MiniTest::Test
|
2017-01-17 23:05:36 +01:00
|
|
|
include RubyxTests
|
2015-12-01 10:55:33 +01:00
|
|
|
|
2017-01-11 18:18:04 +01:00
|
|
|
def pest_ruby_itos
|
|
|
|
@string_input = <<HERE
|
|
|
|
100000.to_s
|
2015-12-01 10:55:33 +01:00
|
|
|
HERE
|
2017-01-11 18:18:04 +01:00
|
|
|
@stdout = "Hello there"
|
|
|
|
check
|
|
|
|
end
|
2015-12-01 10:55:33 +01:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|