diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-10 09:15:53 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-10-10 09:15:53 +0200 |
commit | 84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660 (patch) | |
tree | 1abeab686810336db899dda9b221795085b65dd9 /docs/de/developer/testsuite.rst | |
parent | edc8bc0b2f23bf27ac33b9de079644cc9076579a (diff) | |
download | wallabag-84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660.tar.gz wallabag-84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660.tar.zst wallabag-84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660.zip |
Added documentation about testsuite
Fix #2415
Diffstat (limited to 'docs/de/developer/testsuite.rst')
-rw-r--r-- | docs/de/developer/testsuite.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/de/developer/testsuite.rst b/docs/de/developer/testsuite.rst new file mode 100644 index 00000000..b2b16cdc --- /dev/null +++ b/docs/de/developer/testsuite.rst | |||
@@ -0,0 +1,10 @@ | |||
1 | Testsuite | ||
2 | ========= | ||
3 | |||
4 | To ensure wallabag development quality, we wrote tests with `PHPUnit <https://phpunit.de>`_. | ||
5 | |||
6 | If you contribute to the project (by translating the application, by fixing bugs or by adding a new feature), please write your own tests. | ||
7 | |||
8 | To launch wallabag testsuite, you need to install `ant <http://ant.apache.org>`_. | ||
9 | |||
10 | Then, execute this command ``make test``. | ||