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

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