diff options
author | Jon Bernard <jbernard@tuxion.com> | 2016-01-03 15:01:40 -0500 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2016-01-03 22:39:43 -0500 |
commit | 5c3c91c43e12b40a618ad471ba24950d5b6d1ea0 (patch) | |
tree | e738fdd7e322f86cc609b630f2e19e4eff7f71e6 /tests/test_cli.py | |
parent | 48e781a75c8b5d20c1e9c54c92dd31e641dfd121 (diff) | |
download | dotfiles-5c3c91c43e12b40a618ad471ba24950d5b6d1ea0.tar.gz dotfiles-5c3c91c43e12b40a618ad471ba24950d5b6d1ea0.tar.bz2 dotfiles-5c3c91c43e12b40a618ad471ba24950d5b6d1ea0.zip |
Consolidate tests into a single file
Diffstat (limited to 'tests/test_cli.py')
-rw-r--r-- | tests/test_cli.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/test_cli.py b/tests/test_cli.py deleted file mode 100644 index 7f08010..0000000 --- a/tests/test_cli.py +++ /dev/null @@ -1,10 +0,0 @@ -from click.testing import CliRunner - -from dotfiles import __version__ -from dotfiles.cli import version - - -def test_version(): - runner = CliRunner() - result = runner.invoke(version) - assert ('dotfiles v%s\n' % __version__) == result.output |