1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/rubygems/mockgemui.rb
nobu e2ab44ac40 * test/rubygems/mockgemui.rb (MockGemUi::TTY),
test/rubygems/test_gem_stream_ui.rb (TestGemStreamUI::IsTty):
  need #noecho.

* test/rubygems/test_gem_gemcutter_utilities.rb: need
  rubygems/command.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2010-05-09 17:26:40 +00:00

59 lines
817 B
Ruby

require 'stringio'
require 'rubygems/user_interaction'
class MockGemUi < Gem::StreamUI
class TermError < RuntimeError; end
module TTY
attr_accessor :tty
def tty?()
@tty = true unless defined?(@tty)
@tty
end
def noecho
yield self
end
end
def initialize(input = "")
ins = StringIO.new input
outs = StringIO.new
errs = StringIO.new
ins.extend TTY
outs.extend TTY
errs.extend TTY
super ins, outs, errs
@terminated = false
end
def input
@ins.string
end
def output
@outs.string
end
def error
@errs.string
end
def terminated?
@terminated
end
def terminate_interaction(status=0)
@terminated = true
raise TermError unless status == 0
raise Gem::SystemExitException, status
end
end