Sha256: 7318a2d71073f6c363d18ea2348d9ebf6c8ad1553ea244e38bc33ac4925d9df6

Contents?: true

Size: 694 Bytes

Versions: 1

Compression:

Stored size: 694 Bytes

Contents

Feature: Run simple subprocesses without blocking in ruby

  As a ruby hacker
  I want to run system subprocesses that do not block
  And I want to have them presented as objects
  So that I can get more data about said subprocesses
  And so that I can have more fine grained control of said subprocesses

  Scenario: run simple subprocess without blocking
    Given I have a new subprocess that takes a long time to run
    When I invoke the run method of said nonblocking subprocess
    Then the subprocess should not block
    And the subprocess should report its run status
    And the subprocess should support being waited on till complete
    And the subprocess should have status info

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
subprocess-0.1.6 features/popen_without_blocking.feature