mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
331 B
Ruby
13 lines
331 B
Ruby
|
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
|