Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions codespell_lib/tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,24 @@ def test_check_hidden(tmpdir, capsys):
assert cs.main(d) == 0
assert cs.main('--check-hidden', d) == 3
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