From dea6a46a3e8a66f3ed0da4dad0cc81975151c73f Mon Sep 17 00:00:00 2001 From: Abinoam Praxedes Marques Jr Date: Mon, 29 Jun 2015 18:41:13 -0300 Subject: Add tests for HighLine::Simulator - Issue #142 As suggested by @bparanj on https://github.com/JEG2/highline/issues/142 --- test/tc_simulator.rb | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/tc_simulator.rb diff --git a/test/tc_simulator.rb b/test/tc_simulator.rb new file mode 100644 index 0000000..ac81748 --- /dev/null +++ b/test/tc_simulator.rb @@ -0,0 +1,23 @@ +require 'test/unit' +require 'highline/import' +require 'highline/simulate' + +class SimulatorTest < Test::Unit::TestCase + def setup + input = StringIO.new + output = StringIO.new + $terminal = HighLine.new(input, output) + end + + def test_simulator + HighLine::Simulate.with('Bugs Bunny', '18') do + name = ask('What is your name?') + + assert_equal 'Bugs Bunny', name + + age = ask('What is your age?') + + assert_equal '18', age + end + end +end \ No newline at end of file -- cgit v1.2.1