ionelmc / python-process-tests

Testcase classes and assertions for testing processes.

Home Page:https://pypi.python.org/pypi/process-tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overview

tests
package

Tools for testing processes.

  • Free software: BSD 2-Clause License

Usage

from process_tests import ProcessTestCase
from process_tests import TestProcess

class MyTestCase(ProcessTestCase):
    def test_simple(self):
        with TestProcess('mydaemon', 'arg1', 'arg2') as proc:
            with self.dump_on_error(proc.read):
                self.wait_for_strings(proc.read, 10, # wait 10 seconds for process to output lines with these strings
                    'Started',
                    'Working',
                    'Done',
                )

Features

  • TODO

Examples

TODO

  • tests
  • docs

Requirements

OS:Any
Runtime:Python 2.6, 2.7, 3.2, 3.3 or PyPy

Similar projects

  • TODO

About

Testcase classes and assertions for testing processes.

https://pypi.python.org/pypi/process-tests

License:BSD 2-Clause "Simplified" License


Languages

Language:Python 100.0%