Sha256: d6be3a45f752de7ede5174adfc751b4797280bed73274567328dfb95765a1dbc

Contents?: true

Size: 1.21 KB

Versions: 142

Compression:

Stored size: 1.21 KB

Contents

#!/usr/local/bin/ruby -w

# tc_import.rb
#
#  Created by James Edward Gray II on 2005-04-26.
#  Copyright 2005 Gray Productions. All rights reserved.
#
#  This is Free Software.  See LICENSE and COPYING for details.

require "test/unit"

require "highline/import"
require "stringio"

class TestImport < Test::Unit::TestCase
  def test_import
    assert_respond_to(self, :agree)
    assert_respond_to(self, :ask)
    assert_respond_to(self, :choose)
    assert_respond_to(self, :say)
  end
  
  def test_or_ask
    old_terminal = $terminal
    
    input     = StringIO.new
    output    = StringIO.new
    $terminal = HighLine.new(input, output)  
    
    input << "10\n"
    input.rewind

    assert_equal(10, nil.or_ask("How much?  ", Integer))

    input.rewind

    assert_equal(20, "20".or_ask("How much?  ", Integer))
    assert_equal(20, 20.or_ask("How much?  ", Integer))
    
    assert_equal(10, 20.or_ask("How much?  ", Integer) { |q| q.in = 1..10 })
  ensure
    $terminal = old_terminal
  end
  
  def test_redirection
    old_terminal = $terminal
    
    $terminal = HighLine.new(nil, (output = StringIO.new))
    say("Testing...")
    assert_equal("Testing...\n", output.string)
  ensure
    $terminal = old_terminal
  end
end

Version data entries

142 entries across 138 versions & 15 rubygems

Version Path
delano-rye-0.6.2 vendor/highline-1.5.1/test/tc_import.rb
delano-rye-0.6.3 vendor/highline-1.5.1/test/tc_import.rb
delano-rye-0.6.4 vendor/highline-1.5.1/test/tc_import.rb
malysz87-highline-1.5.10 test/tc_import.rb
malysz87-highline-1.5.11 test/tc_import.rb
malysz87-highline-1.5.4 test/tc_import.rb
malysz87-highline-1.5.5 test/tc_import.rb
solutious-rudy-0.6.0 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.1 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.2 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.3 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.4 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.5 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.6 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.7 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.6.8 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.7.0 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.7.1 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.7.2 vendor/highline-1.5.1/test/tc_import.rb
solutious-rudy-0.7.3 vendor/highline-1.5.1/test/tc_import.rb