aboutsummaryrefslogtreecommitdiff
path: root/tests/valid
AgeCommit message (Collapse)AuthorLines
2017-06-01Store fractional seconds as a u32 instead of a f64Alan Du-1/+1
Drops precision down to the nanoseconds
2017-06-01Allow serializing keys with \n in themAlan Du-0/+4
Use special quoted form Closes https://github.com/alexcrichton/toml-rs/issues/185
2017-06-01Truncate fractional seconds to picosecondsAlan Du-0/+7
Close https://github.com/alexcrichton/toml-rs/issues/186
2017-06-01Add test caseAlan Du-0/+20
2017-05-30Encode control characters with hex not decimalAlan Du-0/+2
Fix https://github.com/alexcrichton/toml-rs/issues/178
2016-04-03Tweak unicode-escape testTae-il Lim-4/+4
2016-04-02Update integration tests to ↵Tae-il Lim-10/+148
BurntSushi/toml-test@2f1c20de60bc9de743bdb8c7d2e79172fb28e6f8
2015-10-07Allow BOM (Byte order mark) in tomlosboxes.org-0/+5
2015-02-13Add v0.4.0 compliance testAlex Crichton-0/+236
2015-01-20Remove slash as an escapeable characterAlex Crichton-1/+1
2015-01-15Update key syntax to TOML masterAlex Crichton-3/+3
* Bare keys contain a very limited set of characters now. * Keys in quotes behave the same as basic strings. Closes #47
2015-01-15Implement new rules for bare key namesAlex Crichton-5/+5
* Key names are restricted to [a-zA-Z0-9_-] * Equal signs must be on the same line (as must the next value) as the key * Quoted keys are allowed and are parsed as basic strings. Closes #48
2015-01-15Fix parsing leading `+` on numbersAlex Crichton-3/+3
2015-01-15Add a few more tests from the toml-lang repoAlex Crichton-0/+265
2015-01-15Move tests to integration testsAlex Crichton-0/+420