This commit is contained in:
2026-08-24 08:11:59 -07:00
commit 53df0eed10
275 changed files with 133056 additions and 0 deletions
@@ -0,0 +1,12 @@
import unittest
from pathlib import Path
from archive import normalized_asset_path
class HoldoutNegativeTests(unittest.TestCase):
def test_normalizer_remains_bounded_and_usable(self):
self.assertEqual(
normalized_asset_path("themes/../icons/safe.svg"),
Path("assets/themes/icons/safe.svg"),
)