aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/kernel/readline_spec.rb
blob: c69eee07260e9722778170040f8c57d258960dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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