2018-03-04 15:09:32 +00:00
|
|
|
require_relative '../../spec_helper'
|
|
|
|
require_relative 'fixtures/classes'
|
2017-05-07 12:04:49 +00:00
|
|
|
|
|
|
|
# These specs only run a basic usage of #spawn.
|
|
|
|
# Process.spawn has more complete specs and they are not
|
|
|
|
# run here as it is redundant and takes too long for little gain.
|
|
|
|
describe "Kernel#spawn" do
|
|
|
|
it "is a private method" do
|
|
|
|
Kernel.should have_private_instance_method(:spawn)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "executes the given command" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> {
|
2017-05-07 12:04:49 +00:00
|
|
|
Process.wait spawn("echo spawn")
|
|
|
|
}.should output_to_fd("spawn\n")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Kernel.spawn" do
|
|
|
|
it "executes the given command" do
|
2019-07-27 12:40:09 +02:00
|
|
|
-> {
|
2017-05-07 12:04:49 +00:00
|
|
|
Process.wait Kernel.spawn("echo spawn")
|
|
|
|
}.should output_to_fd("spawn\n")
|
|
|
|
end
|
|
|
|
end
|