summaryrefslogtreecommitdiff
path: root/spec/ruby/core/kernel/exec_spec.rb
blob: 3d9520ad67a6f78a8fa94ac74e02ca7a8a722883 (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"').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"').should == "hello\n"
  end
end