1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00

Split Archive into Index and Archive

This commit is contained in:
Bastian Venthur
2023-05-31 15:53:49 +02:00
parent a3572d414f
commit 362e721d88
9 changed files with 108 additions and 8 deletions

View File

@@ -291,8 +291,10 @@ foo bar
assert os.path.exists(f'{args.output_dir}/testdir/test')
# ... feed
assert os.path.exists(f'{args.output_dir}/atom.xml')
# ... archive
# ... index
assert os.path.exists(f'{args.output_dir}/index.html')
# ... archive
assert os.path.exists(f'{args.output_dir}/archive.html')
# ... tags
assert os.path.exists(f'{args.output_dir}/tags/index.html')
assert os.path.exists(f'{args.output_dir}/tags/foo.html')