Skip to content

Commit

Permalink
test(data): Make it easier debug problems
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Oct 2, 2023
1 parent 283d356 commit 0316acc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions crates/data/examples/dump.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
fn main() {
let versions = toml_test_data::versions();
println!("{versions:#?}");

let valid = toml_test_data::valid().collect::<Vec<_>>();
println!("{valid:#?}");

let invalid = toml_test_data::invalid().collect::<Vec<_>>();
println!("{invalid:#?}");
}

0 comments on commit 0316acc

Please sign in to comment.