Commit b87e1af committed May 24, 2024 · 1 / 6 · Verified
1 parent 5194334 commit b87e1af Copy full SHA for b87e1af
File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -200,6 +200,10 @@ Untested and implementation-defined behaviour
200
200
This only tests behaviour that's should be true for every encoder implementing
201
201
TOML; a few things are left up to implementations, and are not tested here.
202
202
203
+ - TOML does not mandate a specific integer or float size, but recommends int64
204
+ and float64, which is what this tests. You'll have to manually -skip these
205
+ tests if your implementation doesn't support it.
206
+
203
207
- Many values can be expressed in more than one way: for example ` 0xff ` and
204
208
` 255 ` are equal, as are ` 0.0 ` and ` -0.0 ` .
205
209
Original file line number Diff line number Diff line change 1
- int64-max = 9223372036854775807
1
+ # int64 "should" be supported, but is not mandatory. It's fine to skip this
2
+ # test.
3
+ int64-max = 9223372036854775807
2
4
int64-max-neg = -9223372036854775808
You can’t perform that action at this time.
0 commit comments