summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/print_spec.rb
blob: c8c4453d1e703f84258fa87458118fc7588e8db0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Kernel#print" do
  it "is a private method" do
    Kernel.should have_private_instance_method(:print)
  end
end

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