aboutsummaryrefslogtreecommitdiff
path: root/docs/bonus.rst
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-03-01 12:39:52 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-03-01 12:39:52 +0100
commit2ae77423200364d3fb6c1823e4ddfb7542c834fb (patch)
tree4109daa4b22e5febc7a844042bebfcda36208bf2 /docs/bonus.rst
parent072ec79b51cb4af45b168bf6f73941d1de94c8ae (diff)
downloadminishell_test-2ae77423200364d3fb6c1823e4ddfb7542c834fb.tar.gz
minishell_test-2ae77423200364d3fb6c1823e4ddfb7542c834fb.tar.bz2
minishell_test-2ae77423200364d3fb6c1823e4ddfb7542c834fb.zip
Added bonus doc, Updated command line options doc
Diffstat (limited to 'docs/bonus.rst')
-rw-r--r--docs/bonus.rst24
1 files changed, 22 insertions, 2 deletions
diff --git a/docs/bonus.rst b/docs/bonus.rst
index df4685e..f3d9a88 100644
--- a/docs/bonus.rst
+++ b/docs/bonus.rst
@@ -1,6 +1,26 @@
+.. program:: minishell_test
+
Bonus
=====
+See :ref:`how to enable the bonus tests in the configuration <config-bonus>`
+and the :option:`suite` option.
+
+Supported bonus:
+
+.. table::
+ :align: left
+ :widths: auto
+
+ ====== ====================
+ Name Suite name
+ ====== ====================
+ ``&&`` ``flow/and``
+ ``||`` ``flow/or``
+ ``()`` ``flow/parenthesis``
+ ``*`` ``preprocess/glob``
+ ====== ====================
-See :ref:`config bonus`
-See :ref:`options bonus`
+.. note::
+ | If your bonus isn't supported, feel free to add them yourself and make a pull request.
+ | Take a look at :ref:`custom-tests` and :ref:`developers`.