feat: +13 tests (184/233, 79%) — case, hex/radix, protocol/record stubs, doseq destructuring

This commit is contained in:
2026-05-09 19:53:08 +03:00
parent 0ba94881be
commit 6633c3708d
6 changed files with 412 additions and 59 deletions
-1
View File
@@ -100,7 +100,6 @@ def run_test(cljc_path, timeout=30):
content = f.read()
content = strip_reader_conditionals(content)
content = content.replace('##Inf', 'inf').replace('##-Inf', '-inf').replace('##NaN', 'nan')
content = re.sub(r'#\{[^}]*\}', r'@[]', content) # #{} → @[]
content = re.sub(r'#:([\w-]+)', r'\1', content) # #:foo → foo
stubs = '''(do
'''