fix: 233/233 (100%) - ##Inf/NaN reader, #?@ splicing, :clj platform, doseq :when/:let/:while, hex overflow, unquote-splicing
This commit is contained in:
+2
-1
@@ -98,7 +98,8 @@ def strip_reader_conditionals(text):
|
||||
def run_test(cljc_path, timeout=30):
|
||||
with open(cljc_path, 'r') as f:
|
||||
content = f.read()
|
||||
content = strip_reader_conditionals(content)
|
||||
# Reader conditionals are now handled by the reader itself
|
||||
# content = strip_reader_conditionals(content)
|
||||
content = content.replace('##Inf', 'inf').replace('##-Inf', '-inf').replace('##NaN', 'nan')
|
||||
content = re.sub(r'#:([\w-]+)', r'\1', content) # #:foo → foo
|
||||
stubs = '''(do
|
||||
|
||||
Reference in New Issue
Block a user