blob: bf33b0a48658ab32e6da02d1a75faa92351dfcd5 [file] [log] [blame]
-- This file is automatically generated. You should know what you did if you want to edit this
-- !safe_divide --
1 10 2 5 success
2 10 0 \N division_by_zero
3 0 5 0 success
4 -8 4 -2 success
-- !overflow_check --
1 100 200 safe
2 5000000000000 10000000000000 safe
3 -5000000000000 -10000000000000 safe
4 \N \N null_input
-- !parse_number --
1 123 123 true
2 45.67 45.67 true
3 abc \N false
4 12.34.56 \N false
5 \N false
6 \N \N false
-- !type_check --
1 hello str 5
2 str 0
3 12345 str 5
4 \N NoneType 0
-- !safe_index --
1 3 1 20 success
2 3 5 \N out_of_bounds
3 3 -1 \N out_of_bounds
4 0 0 \N empty_array
5 0 0 \N null_array
-- !collection_stats --
1 5 15 3 computed
2 0 0 0 empty_array
3 0 0 0 null_array
4 2 30 15 computed
-- !safe_struct_access --
1 true true Alice 30
2 true false Bob \N
3 false true \N 25
4 false false \N \N
-- !string_slice --
1 hello world 0 5 hello success
2 hello world 6 11 world success
3 hello world 20 30 empty_slice
4 hello world 5 2 empty_slice
5 \N 0 5 \N null_string
-- !check_encoding --
1 hello 5 5 false
2 你好世界 12 4 true
3 café 5 4 true
4 0 0 false
5 \N 0 0 false
-- !conditional_process --
1 -10 negative 10
2 0 zero 1
3 50 small_positive 100
4 200 large_positive 200
5 \N null 0
-- !filter_yield --
1 10
5 22
-- !number_range --
1 0 zero true
2 1e-150 extremely_small true
3 1e+150 extremely_large true
4 0.5 small true
5 123.456 normal true
6 \N null true
-- !date_validation --
1 2024-01-01 2024 true normal
2 2000-02-29 2000 true normal
3 1970-01-01 1970 false normal
4 9999-12-31 9999 false far_future
5 \N 0 false null_date