mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
263 B
Ruby
11 lines
263 B
Ruby
require_relative '../../spec_helper'
|
|
require 'stringio'
|
|
|
|
# This method is added by io/console on require.
|
|
describe "StringIO#getpass" do
|
|
require 'io/console'
|
|
|
|
it "is defined by io/console" do
|
|
StringIO.new("example").should.respond_to?(:getpass)
|
|
end
|
|
end
|