diff options
Diffstat (limited to 'test_dotfiles.py')
-rw-r--r-- | test_dotfiles.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test_dotfiles.py b/test_dotfiles.py index 371b66e..db63632 100644 --- a/test_dotfiles.py +++ b/test_dotfiles.py @@ -1,7 +1,6 @@ import py import pytest -from dotfiles import __version__ from dotfiles import cli, unique_suffix from dotfiles import Repository, Dotfile @@ -60,11 +59,6 @@ class TestCli(object): def test_staus(self): pass - def test_version(self, runner): - result = runner.invoke(cli, ['version']) - assert not result.exception - assert result.output == 'dotfiles version %s\n' % __version__ - class TestRepository(object): |