summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/exec_spec.rb
blob: 3a7b6569145b847752e10510a19732152f292e73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)

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

  it "runs the specified command, replacing current process" do
    ruby_exe('exec "echo hello"; puts "fail"', escape: true).should == "hello\n"
  end
end

describe "Kernel.exec" do
  it "runs the specified command, replacing current process" do
    ruby_exe('Kernel.exec "echo hello"; puts "fail"', escape: true).should == "hello\n"
  end
end