Skip to content

Commit

Permalink
Recreate Dimitri's demo as a test
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman authored and DimitriPapadopoulos committed Oct 20, 2022
1 parent b98f2c6 commit f590535
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion codespell_lib/tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,25 @@ def test_check_hidden(tmpdir, capsys):
op.join(subdir, '.abandonned', 'abandonned.txt'))
assert cs.main(d) == 0
assert cs.main('--check-hidden', d) == 3
assert cs.main('--check-hidden', '--check-filenames', d) == 7
assert cs.main('--check-hidden', '--check-filenames', d) == 8
os.mkdir(op.join(d, '.abandonned', 'a'))
copyfile(op.join(d, '.abandonned.txt'),
op.join(d, '.abandonned', 'a', 'abandonned.txt'))
assert cs.main(d) == 0
assert cs.main('--check-hidden', d) == 4
assert cs.main('--check-hidden', '--check-filenames', d) == 11
os.mkdir(op.join(d, '.abandonned', 'a', 'b'))
copyfile(op.join(d, '.abandonned.txt'),
op.join(d, '.abandonned', 'a', 'b', 'abandonned.txt'))
assert cs.main(d) == 0
assert cs.main('--check-hidden', d) == 5
assert cs.main('--check-hidden', '--check-filenames', d) == 14
os.mkdir(op.join(d, '.abandonned', 'a', 'b', 'c'))
copyfile(op.join(d, '.abandonned.txt'),
op.join(d, '.abandonned', 'a', 'b', 'c', 'abandonned.txt'))
assert cs.main(d) == 0
assert cs.main('--check-hidden', d) == 6
assert cs.main('--check-hidden', '--check-filenames', d) == 17


def test_case_handling(tmpdir, capsys):
Expand Down

0 comments on commit f590535

Please sign in to comment.