feat: add test case list to day template

This commit is contained in:
Ashhhleyyy 2022-12-08 19:50:17 +00:00
parent 1a0eb400f3
commit eafc13993b
Signed by: ash
GPG key ID: 83B789081A0878FB

View file

@ -10,7 +10,7 @@ fn parse(s: &str) -> Result<Input> {
Ok(()) Ok(())
} }
#[aoc(day = {{ day }}, parse = parse)] #[aoc(day = {{ day }}, parse = parse, test_cases = ["day_{{ day }}.txt"])]
fn day_{{ day }}(mut input: Input) -> Result<()> { fn day_{{ day }}(mut input: Input) -> Result<()> {
// Part 1 // Part 1
println!("Part one: "); println!("Part one: ");