Added tests from SRFI reference implementation
This commit is contained in:
parent
8e5e08edac
commit
128e249bd5
333 changed files with 2817 additions and 1 deletions
1646
srfi.180.checks.scm
Normal file
1646
srfi.180.checks.scm
Normal file
File diff suppressed because it is too large
Load diff
|
@ -6,9 +6,14 @@
|
|||
(license "MIT")
|
||||
(version "1.0.0")
|
||||
(dependencies r7rs srfi-60 srfi-145)
|
||||
(build-dependencies srfi-121)
|
||||
(components
|
||||
(extension srfi.180.helpers
|
||||
(csc-options "-X" "r7rs" "-R" "r7rs"))
|
||||
(extension srfi-180
|
||||
(component-dependencies srfi.180.helpers)
|
||||
(csc-options "-X" "r7rs" "-R" "r7rs"))))
|
||||
(csc-options "-X" "r7rs" "-R" "r7rs"))
|
||||
(extension srfi.180.checks
|
||||
(component-dependencies srfi-180)
|
||||
(csc-options "-X" "r7rs" "-R" "r7rs"))
|
||||
))
|
||||
|
|
21
tests/files/LICENSE
Normal file
21
tests/files/LICENSE
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2016 Nicolas Seriot
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
1
tests/files/i_number_double_huge_neg_exp.json
Normal file
1
tests/files/i_number_double_huge_neg_exp.json
Normal file
|
@ -0,0 +1 @@
|
|||
[123.456e-789]
|
1
tests/files/i_number_huge_exp.json
Normal file
1
tests/files/i_number_huge_exp.json
Normal file
|
@ -0,0 +1 @@
|
|||
[0.4e00669999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999969999999006]
|
1
tests/files/i_number_neg_int_huge_exp.json
Executable file
1
tests/files/i_number_neg_int_huge_exp.json
Executable file
|
@ -0,0 +1 @@
|
|||
[-1e+9999]
|
1
tests/files/i_number_pos_double_huge_exp.json
Executable file
1
tests/files/i_number_pos_double_huge_exp.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1.5e+9999]
|
1
tests/files/i_number_real_neg_overflow.json
Normal file
1
tests/files/i_number_real_neg_overflow.json
Normal file
|
@ -0,0 +1 @@
|
|||
[-123123e100000]
|
1
tests/files/i_number_real_pos_overflow.json
Normal file
1
tests/files/i_number_real_pos_overflow.json
Normal file
|
@ -0,0 +1 @@
|
|||
[123123e100000]
|
1
tests/files/i_number_real_underflow.json
Normal file
1
tests/files/i_number_real_underflow.json
Normal file
|
@ -0,0 +1 @@
|
|||
[123e-10000000]
|
1
tests/files/i_number_too_big_neg_int.json
Normal file
1
tests/files/i_number_too_big_neg_int.json
Normal file
|
@ -0,0 +1 @@
|
|||
[-123123123123123123123123123123]
|
1
tests/files/i_number_too_big_pos_int.json
Normal file
1
tests/files/i_number_too_big_pos_int.json
Normal file
|
@ -0,0 +1 @@
|
|||
[100000000000000000000]
|
1
tests/files/i_number_very_big_negative_int.json
Executable file
1
tests/files/i_number_very_big_negative_int.json
Executable file
|
@ -0,0 +1 @@
|
|||
[-237462374673276894279832749832423479823246327846]
|
1
tests/files/i_object_key_lone_2nd_surrogate.json
Normal file
1
tests/files/i_object_key_lone_2nd_surrogate.json
Normal file
|
@ -0,0 +1 @@
|
|||
{"\uDFAA":0}
|
1
tests/files/i_string_1st_surrogate_but_2nd_missing.json
Normal file
1
tests/files/i_string_1st_surrogate_but_2nd_missing.json
Normal file
|
@ -0,0 +1 @@
|
|||
["\uDADA"]
|
|
@ -0,0 +1 @@
|
|||
["\uD888\u1234"]
|
BIN
tests/files/i_string_UTF-16LE_with_BOM.json
Normal file
BIN
tests/files/i_string_UTF-16LE_with_BOM.json
Normal file
Binary file not shown.
1
tests/files/i_string_UTF-8_invalid_sequence.json
Executable file
1
tests/files/i_string_UTF-8_invalid_sequence.json
Executable file
|
@ -0,0 +1 @@
|
|||
["譌・ム淫"]
|
1
tests/files/i_string_UTF8_surrogate_U+D800.json
Normal file
1
tests/files/i_string_UTF8_surrogate_U+D800.json
Normal file
|
@ -0,0 +1 @@
|
|||
["<22><><EFBFBD>"]
|
1
tests/files/i_string_incomplete_surrogate_and_escape_valid.json
Executable file
1
tests/files/i_string_incomplete_surrogate_and_escape_valid.json
Executable file
|
@ -0,0 +1 @@
|
|||
["\uD800\n"]
|
1
tests/files/i_string_incomplete_surrogate_pair.json
Executable file
1
tests/files/i_string_incomplete_surrogate_pair.json
Executable file
|
@ -0,0 +1 @@
|
|||
["\uDd1ea"]
|
1
tests/files/i_string_incomplete_surrogates_escape_valid.json
Executable file
1
tests/files/i_string_incomplete_surrogates_escape_valid.json
Executable file
|
@ -0,0 +1 @@
|
|||
["\uD800\uD800\n"]
|
1
tests/files/i_string_invalid_lonely_surrogate.json
Executable file
1
tests/files/i_string_invalid_lonely_surrogate.json
Executable file
|
@ -0,0 +1 @@
|
|||
["\ud800"]
|
1
tests/files/i_string_invalid_surrogate.json
Executable file
1
tests/files/i_string_invalid_surrogate.json
Executable file
|
@ -0,0 +1 @@
|
|||
["\ud800abc"]
|
1
tests/files/i_string_invalid_utf-8.json
Normal file
1
tests/files/i_string_invalid_utf-8.json
Normal file
|
@ -0,0 +1 @@
|
|||
["<22>"]
|
1
tests/files/i_string_inverted_surrogates_U+1D11E.json
Executable file
1
tests/files/i_string_inverted_surrogates_U+1D11E.json
Executable file
|
@ -0,0 +1 @@
|
|||
["\uDd1e\uD834"]
|
1
tests/files/i_string_iso_latin_1.json
Normal file
1
tests/files/i_string_iso_latin_1.json
Normal file
|
@ -0,0 +1 @@
|
|||
["И"]
|
1
tests/files/i_string_lone_second_surrogate.json
Normal file
1
tests/files/i_string_lone_second_surrogate.json
Normal file
|
@ -0,0 +1 @@
|
|||
["\uDFAA"]
|
1
tests/files/i_string_lone_utf8_continuation_byte.json
Normal file
1
tests/files/i_string_lone_utf8_continuation_byte.json
Normal file
|
@ -0,0 +1 @@
|
|||
["<22>"]
|
1
tests/files/i_string_not_in_unicode_range.json
Normal file
1
tests/files/i_string_not_in_unicode_range.json
Normal file
|
@ -0,0 +1 @@
|
|||
["<22><><EFBFBD><EFBFBD>"]
|
1
tests/files/i_string_overlong_sequence_2_bytes.json
Normal file
1
tests/files/i_string_overlong_sequence_2_bytes.json
Normal file
|
@ -0,0 +1 @@
|
|||
["<22><>"]
|
1
tests/files/i_string_overlong_sequence_6_bytes.json
Executable file
1
tests/files/i_string_overlong_sequence_6_bytes.json
Executable file
|
@ -0,0 +1 @@
|
|||
["<22>ソソソソ"]
|
1
tests/files/i_string_overlong_sequence_6_bytes_null.json
Executable file
1
tests/files/i_string_overlong_sequence_6_bytes_null.json
Executable file
|
@ -0,0 +1 @@
|
|||
["<22>"]
|
1
tests/files/i_string_truncated-utf-8.json
Normal file
1
tests/files/i_string_truncated-utf-8.json
Normal file
|
@ -0,0 +1 @@
|
|||
["<22><>"]
|
BIN
tests/files/i_string_utf16BE_no_BOM.json
Normal file
BIN
tests/files/i_string_utf16BE_no_BOM.json
Normal file
Binary file not shown.
BIN
tests/files/i_string_utf16LE_no_BOM.json
Normal file
BIN
tests/files/i_string_utf16LE_no_BOM.json
Normal file
Binary file not shown.
1
tests/files/i_structure_500_nested_arrays.json
Normal file
1
tests/files/i_structure_500_nested_arrays.json
Normal file
|
@ -0,0 +1 @@
|
|||
[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
|
1
tests/files/i_structure_UTF-8_BOM_empty_object.json
Executable file
1
tests/files/i_structure_UTF-8_BOM_empty_object.json
Executable file
|
@ -0,0 +1 @@
|
|||
{}
|
10
tests/files/json-sequence-with-one-broken-json.log
Normal file
10
tests/files/json-sequence-with-one-broken-json.log
Normal file
|
@ -0,0 +1,10 @@
|
|||
{"d":"2014-09-22T22:11:26.315Z","count":0}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":1}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":2}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":3}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":4}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":5}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":6}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":7}
|
||||
{"d":"2014-09-22T22:11:26.317Z","
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":9}
|
10
tests/files/json-sequence.log
Normal file
10
tests/files/json-sequence.log
Normal file
|
@ -0,0 +1,10 @@
|
|||
{"d":"2014-09-22T22:11:26.315Z","count":0}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":1}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":2}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":3}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":4}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":5}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":6}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":7}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":8}
|
||||
{"d":"2014-09-22T22:11:26.317Z","count":9}
|
1
tests/files/n_array_1_true_without_comma.json
Normal file
1
tests/files/n_array_1_true_without_comma.json
Normal file
|
@ -0,0 +1 @@
|
|||
[1 true]
|
1
tests/files/n_array_a_invalid_utf8.json
Normal file
1
tests/files/n_array_a_invalid_utf8.json
Normal file
|
@ -0,0 +1 @@
|
|||
[a蘊
|
1
tests/files/n_array_colon_instead_of_comma.json
Normal file
1
tests/files/n_array_colon_instead_of_comma.json
Normal file
|
@ -0,0 +1 @@
|
|||
["": 1]
|
1
tests/files/n_array_comma_after_close.json
Normal file
1
tests/files/n_array_comma_after_close.json
Normal file
|
@ -0,0 +1 @@
|
|||
[""],
|
1
tests/files/n_array_comma_and_number.json
Executable file
1
tests/files/n_array_comma_and_number.json
Executable file
|
@ -0,0 +1 @@
|
|||
[,1]
|
1
tests/files/n_array_double_comma.json
Executable file
1
tests/files/n_array_double_comma.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1,,2]
|
1
tests/files/n_array_double_extra_comma.json
Normal file
1
tests/files/n_array_double_extra_comma.json
Normal file
|
@ -0,0 +1 @@
|
|||
["x",,]
|
1
tests/files/n_array_extra_close.json
Normal file
1
tests/files/n_array_extra_close.json
Normal file
|
@ -0,0 +1 @@
|
|||
["x"]]
|
1
tests/files/n_array_extra_comma.json
Normal file
1
tests/files/n_array_extra_comma.json
Normal file
|
@ -0,0 +1 @@
|
|||
["",]
|
1
tests/files/n_array_incomplete.json
Normal file
1
tests/files/n_array_incomplete.json
Normal file
|
@ -0,0 +1 @@
|
|||
["x"
|
1
tests/files/n_array_incomplete_invalid_value.json
Normal file
1
tests/files/n_array_incomplete_invalid_value.json
Normal file
|
@ -0,0 +1 @@
|
|||
[x
|
1
tests/files/n_array_inner_array_no_comma.json
Normal file
1
tests/files/n_array_inner_array_no_comma.json
Normal file
|
@ -0,0 +1 @@
|
|||
[3[4]]
|
1
tests/files/n_array_invalid_utf8.json
Normal file
1
tests/files/n_array_invalid_utf8.json
Normal file
|
@ -0,0 +1 @@
|
|||
[<EFBFBD>]
|
1
tests/files/n_array_items_separated_by_semicolon.json
Executable file
1
tests/files/n_array_items_separated_by_semicolon.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1:2]
|
1
tests/files/n_array_just_comma.json
Executable file
1
tests/files/n_array_just_comma.json
Executable file
|
@ -0,0 +1 @@
|
|||
[,]
|
1
tests/files/n_array_just_minus.json
Executable file
1
tests/files/n_array_just_minus.json
Executable file
|
@ -0,0 +1 @@
|
|||
[-]
|
1
tests/files/n_array_missing_value.json
Normal file
1
tests/files/n_array_missing_value.json
Normal file
|
@ -0,0 +1 @@
|
|||
[ , ""]
|
3
tests/files/n_array_newlines_unclosed.json
Normal file
3
tests/files/n_array_newlines_unclosed.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
["a",
|
||||
4
|
||||
,1,
|
1
tests/files/n_array_number_and_comma.json
Executable file
1
tests/files/n_array_number_and_comma.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1,]
|
1
tests/files/n_array_number_and_several_commas.json
Executable file
1
tests/files/n_array_number_and_several_commas.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1,,]
|
1
tests/files/n_array_spaces_vertical_tab_formfeed.json
Executable file
1
tests/files/n_array_spaces_vertical_tab_formfeed.json
Executable file
|
@ -0,0 +1 @@
|
|||
["a"\f]
|
1
tests/files/n_array_star_inside.json
Executable file
1
tests/files/n_array_star_inside.json
Executable file
|
@ -0,0 +1 @@
|
|||
[*]
|
1
tests/files/n_array_unclosed.json
Normal file
1
tests/files/n_array_unclosed.json
Normal file
|
@ -0,0 +1 @@
|
|||
[""
|
1
tests/files/n_array_unclosed_trailing_comma.json
Normal file
1
tests/files/n_array_unclosed_trailing_comma.json
Normal file
|
@ -0,0 +1 @@
|
|||
[1,
|
3
tests/files/n_array_unclosed_with_new_lines.json
Normal file
3
tests/files/n_array_unclosed_with_new_lines.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
[1,
|
||||
1
|
||||
,1
|
1
tests/files/n_array_unclosed_with_object_inside.json
Normal file
1
tests/files/n_array_unclosed_with_object_inside.json
Normal file
|
@ -0,0 +1 @@
|
|||
[{}
|
1
tests/files/n_boolean_not_false.json
Normal file
1
tests/files/n_boolean_not_false.json
Normal file
|
@ -0,0 +1 @@
|
|||
fxyz
|
1
tests/files/n_boolean_not_true.json
Normal file
1
tests/files/n_boolean_not_true.json
Normal file
|
@ -0,0 +1 @@
|
|||
txyz
|
1
tests/files/n_incomplete_false.json
Normal file
1
tests/files/n_incomplete_false.json
Normal file
|
@ -0,0 +1 @@
|
|||
[fals]
|
1
tests/files/n_incomplete_null.json
Normal file
1
tests/files/n_incomplete_null.json
Normal file
|
@ -0,0 +1 @@
|
|||
[nul]
|
1
tests/files/n_incomplete_true.json
Normal file
1
tests/files/n_incomplete_true.json
Normal file
|
@ -0,0 +1 @@
|
|||
[tru]
|
BIN
tests/files/n_multidigit_number_then_00.json
Normal file
BIN
tests/files/n_multidigit_number_then_00.json
Normal file
Binary file not shown.
1
tests/files/n_not_null.json
Normal file
1
tests/files/n_not_null.json
Normal file
|
@ -0,0 +1 @@
|
|||
nxyz
|
1
tests/files/n_number_++.json
Normal file
1
tests/files/n_number_++.json
Normal file
|
@ -0,0 +1 @@
|
|||
[++1234]
|
1
tests/files/n_number_+1.json
Executable file
1
tests/files/n_number_+1.json
Executable file
|
@ -0,0 +1 @@
|
|||
[+1]
|
1
tests/files/n_number_+Inf.json
Executable file
1
tests/files/n_number_+Inf.json
Executable file
|
@ -0,0 +1 @@
|
|||
[+Inf]
|
1
tests/files/n_number_-01.json
Executable file
1
tests/files/n_number_-01.json
Executable file
|
@ -0,0 +1 @@
|
|||
[-01]
|
1
tests/files/n_number_-1.0..json
Executable file
1
tests/files/n_number_-1.0..json
Executable file
|
@ -0,0 +1 @@
|
|||
[-1.0.]
|
1
tests/files/n_number_-2..json
Executable file
1
tests/files/n_number_-2..json
Executable file
|
@ -0,0 +1 @@
|
|||
[-2.]
|
1
tests/files/n_number_-NaN.json
Executable file
1
tests/files/n_number_-NaN.json
Executable file
|
@ -0,0 +1 @@
|
|||
[-NaN]
|
1
tests/files/n_number_.-1.json
Normal file
1
tests/files/n_number_.-1.json
Normal file
|
@ -0,0 +1 @@
|
|||
[.-1]
|
1
tests/files/n_number_.2e-3.json
Executable file
1
tests/files/n_number_.2e-3.json
Executable file
|
@ -0,0 +1 @@
|
|||
[.2e-3]
|
1
tests/files/n_number_0.1.2.json
Executable file
1
tests/files/n_number_0.1.2.json
Executable file
|
@ -0,0 +1 @@
|
|||
[0.1.2]
|
1
tests/files/n_number_0.3e+.json
Normal file
1
tests/files/n_number_0.3e+.json
Normal file
|
@ -0,0 +1 @@
|
|||
[0.3e+]
|
1
tests/files/n_number_0.3e.json
Normal file
1
tests/files/n_number_0.3e.json
Normal file
|
@ -0,0 +1 @@
|
|||
[0.3e]
|
1
tests/files/n_number_0.e1.json
Normal file
1
tests/files/n_number_0.e1.json
Normal file
|
@ -0,0 +1 @@
|
|||
[0.e1]
|
1
tests/files/n_number_0_capital_E+.json
Normal file
1
tests/files/n_number_0_capital_E+.json
Normal file
|
@ -0,0 +1 @@
|
|||
[0E+]
|
1
tests/files/n_number_0_capital_E.json
Executable file
1
tests/files/n_number_0_capital_E.json
Executable file
|
@ -0,0 +1 @@
|
|||
[0E]
|
1
tests/files/n_number_0e+.json
Normal file
1
tests/files/n_number_0e+.json
Normal file
|
@ -0,0 +1 @@
|
|||
[0e+]
|
1
tests/files/n_number_0e.json
Normal file
1
tests/files/n_number_0e.json
Normal file
|
@ -0,0 +1 @@
|
|||
[0e]
|
1
tests/files/n_number_1.0e+.json
Executable file
1
tests/files/n_number_1.0e+.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1.0e+]
|
1
tests/files/n_number_1.0e-.json
Executable file
1
tests/files/n_number_1.0e-.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1.0e-]
|
1
tests/files/n_number_1.0e.json
Executable file
1
tests/files/n_number_1.0e.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1.0e]
|
1
tests/files/n_number_1_000.json
Executable file
1
tests/files/n_number_1_000.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1 000.0]
|
1
tests/files/n_number_1eE2.json
Executable file
1
tests/files/n_number_1eE2.json
Executable file
|
@ -0,0 +1 @@
|
|||
[1eE2]
|
1
tests/files/n_number_2.e+3.json
Executable file
1
tests/files/n_number_2.e+3.json
Executable file
|
@ -0,0 +1 @@
|
|||
[2.e+3]
|
1
tests/files/n_number_2.e-3.json
Executable file
1
tests/files/n_number_2.e-3.json
Executable file
|
@ -0,0 +1 @@
|
|||
[2.e-3]
|
1
tests/files/n_number_2.e3.json
Executable file
1
tests/files/n_number_2.e3.json
Executable file
|
@ -0,0 +1 @@
|
|||
[2.e3]
|
1
tests/files/n_number_9.e+.json
Normal file
1
tests/files/n_number_9.e+.json
Normal file
|
@ -0,0 +1 @@
|
|||
[9.e+]
|
1
tests/files/n_number_Inf.json
Executable file
1
tests/files/n_number_Inf.json
Executable file
|
@ -0,0 +1 @@
|
|||
[Inf]
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue