aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)AuthorLines
2016-04-17Add failing test cases containing invalid Toml with keys on the same line as ↵James Sanderson-0/+6
table definition
2016-04-03Tweak unicode-escape testTae-il Lim-4/+4
2016-04-02Update integration tests to ↵Tae-il Lim-12/+196
BurntSushi/toml-test@2f1c20de60bc9de743bdb8c7d2e79172fb28e6f8
2015-10-07Allow BOM (Byte order mark) in tomlosboxes.org-0/+8
2015-08-14Add a very simple test for Parser::to_linecol.Alex Gulyás-0/+6
This test shows that in some cases converting error offsets generated by the parser to line and column numbers will panic ('arithmetic operation overflowed') in debug mode, and return an incorrect column number in release mode.
2015-08-13Make serde-tests a standalone crateAlex Crichton-487/+0
2015-08-12Get serde feature compiling againErick Tryzelaar-1/+1
2015-04-20most tests work nowOliver Schneider-5/+16
2015-04-02wipAlex Crichton-0/+476
2015-03-25Bump to 0.1.19Alex Crichton-1/+1
2015-03-09Reduce usage of unstable featuresAlex Crichton-1/+1
2015-02-13Add v0.4.0 compliance testAlex Crichton-0/+239
2015-02-02Properly escape keys when printing TOMLAlex Crichton-2/+8
Closes #53
2015-01-27Migrate to as many stable functions as possibleAlex Crichton-14/+8
2015-01-20Remove slash as an escapeable characterAlex Crichton-1/+1
2015-01-15Update key syntax to TOML masterAlex Crichton-4/+4
* 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/+274
2015-01-15Move tests to integration testsAlex Crichton-0/+748