1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/kernel/readline_spec.rb

13 lines
331 B
Ruby
Raw Normal View History

require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
describe "Kernel#readline" do
it "is a private method" do
Kernel.should have_private_instance_method(:readline)
end
end
describe "Kernel.readline" do
it "needs to be reviewed for spec completeness"
end