aboutsummaryrefslogtreecommitdiff
path: root/docs/gettingstarted.rst
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-03-01 14:39:47 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-03-01 14:39:47 +0100
commita0f278b13a1347663fd9626322b30e7b87615a0d (patch)
tree4d2fdfd8d582f6b29358d3a6be53d4cbd3d87cb8 /docs/gettingstarted.rst
parent9a0f89c4c9310204a331d4b75e679a71faa6c153 (diff)
downloadminishell_test-a0f278b13a1347663fd9626322b30e7b87615a0d.tar.gz
minishell_test-a0f278b13a1347663fd9626322b30e7b87615a0d.tar.bz2
minishell_test-a0f278b13a1347663fd9626322b30e7b87615a0d.zip
Added custom test configuration
Diffstat (limited to 'docs/gettingstarted.rst')
-rw-r--r--docs/gettingstarted.rst42
1 files changed, 0 insertions, 42 deletions
diff --git a/docs/gettingstarted.rst b/docs/gettingstarted.rst
deleted file mode 100644
index 15c1efc..0000000
--- a/docs/gettingstarted.rst
+++ /dev/null
@@ -1,42 +0,0 @@
-Getting Started
----------------
-
-Installation
-++++++++++++
-
-.. code-block::
-
- $ pip3 install minishell-test
- $ pip3 install --user minishell-test # if you don't have root access
-
-Compatibility
-+++++++++++++
-
-Your executable **must** support the ``-c`` option which allow to pass command as an argument.
-
-.. code-block::
-
- $ bash -c 'echo bonjour je suis | cat -e'
- bonjour he suis$
- $ ./minishell -c 'echo bonjour je suis | cat -e'
- bonjour je suis$
-
-
-.. note::
- With this setup ``argv[2]`` is what you would usually get in ``line`` from ``get_next_line``.
-
-Usage
-+++++
-
-Run all the predefined tests:
-
-.. code-block::
-
- $ cd <MINISHELL>
- $ minishell_test
-
-.. warning::
- If you get ``command not found``, do either of those things:
-
- * Add ``~/.local/bin`` to your ``PATH`` environment variable.
- * Run ``$ python3 -m minishell_test`` instead of ``$ minishell_test``