Sha256: daa1be9468cbab9799fdec49245b0b2f49b97496a253e57d457036a48edc3737

Contents?: true

Size: 291 Bytes

Versions: 1

Compression:

Stored size: 291 Bytes

Contents

Given /^I have a new subprocess that runs fast$/ do
  @popen = Subprocess::Popen.new('echo 1')
end

When /^I invoke the run method of said fast subprocess$/ do
  @popen.run
end

Then /^the subprocess should report running as false without waiting$/ do
  @popen.running?.should be_false
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
subprocess-0.1.6 features/step_definitions/popen_running_steps.rb