Metadata-Version: 2.1
Name: minishell_test
Version: 1.1.3
Summary: test for the minishell project of school 42
Home-page: https://github.com/cacharle/minishell_test
Author: Charles Cabergs
Author-email: me@cacharle.xyz
Maintainer: Charles Cabergs
Maintainer-email: me@cacharle.xyz
License: GPL2
Project-URL: Tracker, https://github.com/cacharle/minishell_test/issues
Description: # minishell\_test
        
        [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/minishell-test)](https://pypi.org/project/minishell-test/)
        [![Documentation](https://readthedocs.org/projects/minishell-test/badge/?version=latest)](https://minishell-test.readthedocs.io)
        [![Build Status](https://api.travis-ci.com/cacharle/minishell_test.svg?branch=master)](https://travis-ci.com/cacharle/minishell_test)
        
        ![preview](https://i.imgur.com/98xh2xY.gif)
        
        ## Documentation
        
        The full documentation for this project is available at
        [minishell-test.readthedocs.io](https://minishell-test.readthedocs.io).
        
        ## Getting Started
        
        ### Installation
        
        ``` 
        $ 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.
        
        ``` 
        $ bash -c 'echo bonjour je suis | cat -e'
        bonjour je suis$
        $ ./minishell -c 'echo bonjour je suis | cat -e'
        bonjour je suis$
        ```
        
        <div class="note">
        
        <div class="title">
        
        
        </div>
        
        With this setup `argv[2]` is what you would usually get in `line` from
        `get_next_line`.
        
        </div>
        
        ### Usage
        
        Run all the predefined tests:
        
        ``` 
        $ cd <MINISHELL>
        $ minishell_test
        ```
        
        <div class="warning">
        
        <div class="title">
        
        
        </div>
        
        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`
        
        </div>
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.6
Description-Content-Type: text/markdown
