| Index: third_party/pexpect/DEVELOPERS.rst
|
| diff --git a/third_party/pexpect/DEVELOPERS.rst b/third_party/pexpect/DEVELOPERS.rst
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bf2bb9f30f8af075f2a03b3042bc7bd04c662970
|
| --- /dev/null
|
| +++ b/third_party/pexpect/DEVELOPERS.rst
|
| @@ -0,0 +1,12 @@
|
| +To run the tests, use `py.test <http://pytest.org/latest/>`_::
|
| +
|
| + py.test tests
|
| +
|
| +The tests are all located in the tests/ directory. To add a new unit
|
| +test all you have to do is create the file in the tests/ directory with a
|
| +filename in this format::
|
| +
|
| + test_*.py
|
| +
|
| +New test case classes may wish to inherit from ``PexpectTestCase.PexpectTestCase``
|
| +in the tests directory, which sets up some convenient functionality.
|
|
|