summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/syscall_spec.rb
blob: bcea833f1f765c47701d0a244862b5a232a2cb3a (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#syscall" do
  it "is a private method" do
    Kernel.should have_private_instance_method(:syscall)
  end
end

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