aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/kernel/gets_spec.rb
blob: eb68e093abdd52926251f1dfe64ee453fb543a76 (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#gets" do
  it "is a private method" do
    Kernel.should have_private_instance_method(:gets)
  end
end

describe "Kernel.gets" do
  it "needs to be reviewed for spec completeness"
end