about summary refs log tree commit diff
path: root/src/libcore/tests/fmt/builders.rs
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-730/+0
2020-01-16Rust ./x.py fmtRichard Dodd-12/+14
2020-01-14Implement `finish_non_exhaustive` for `DebugStruct`.Richard Dodd-0/+83
2019-12-22Format the worldMark Rousskov-125/+110
2019-10-10move debug_map assertions after check for errAshley Mannix-0/+40
2019-07-08add key and value methods to DebugMapAshley Mannix-8/+85
2019-04-20Deny rust_2018_idioms in libcore testsPhilipp Hansch-25/+25
2019-04-05Include trailing comma in multiline Debug representationDavid Tolnay-26/+26
This commit changes the behavior of Formatter::debug_struct, debug_tuple, debug_list, debug_set, and debug_map to render trailing commas in {:#?} mode, which is the dominant style in modern Rust code. Before: Language { name: "Rust", trailing_commas: false } After: Language { name: "Rust", trailing_commas: true, }
2018-12-25Remove licensesMark Rousskov-10/+0
2017-11-24Make fmt::DebugList and friends forward formatting parametersSimon Sapin-0/+55
For example, formatting slice of integers with `{:04?}` should zero-pad each integer.
2017-04-03Move libXtest into libX/testsStjepan Glavina-0/+498
This change moves: 1. `libcoretest` into `libcore/tests` 2. `libcollectionstest` into `libcollections/tests` This is a follow-up to #39561.