Skip to content
Snippets Groups Projects
Commit 6a47b061 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

tests: Add a test comparing two empty directories.


Signed-off-by: Chris Lamb's avatarChris Lamb <lamby@debian.org>
parent 6f2bee32
No related branches found
No related tags found
No related merge requests found
......@@ -105,6 +105,13 @@ def test_no_differences(capsys):
assert err == ''
assert out == ''
def test_no_differences_directories(capsys, tmpdir):
ret, out, err = run(capsys, str(tmpdir.mkdir('a')), str(tmpdir.mkdir('b')))
assert ret == 0
assert err == ''
assert out == ''
def test_list_tools(capsys):
ret, out, err = run(capsys, '--list-tools')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment