diff options
Diffstat (limited to 'tests/parsing.rs')
-rw-r--r-- | tests/parsing.rs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/parsing.rs b/tests/parsing.rs index 08922c9..3eb3a4b 100644 --- a/tests/parsing.rs +++ b/tests/parsing.rs @@ -393,6 +393,35 @@ test! { ], } +// Training area + +test! { + name: parse_standard_kitty_golem, + log: "logs/standard-golem-20211112.zevtc", + boss: Encounter::StandardKittyGolem, + players: &[ + (1, ":Dunje.4863", "Ai Higashi", Guardian, Some(Dragonhunter)), + ], +} + +test! { + name: parse_medium_kitty_golem, + log: "logs/medium-golem-20211112.zevtc", + boss: Encounter::MediumKittyGolem, + players: &[ + (1, ":Dunje.4863", "Ai Higashi", Guardian, Some(Dragonhunter)), + ], +} + +test! { + name: parse_large_kitty_golem, + log: "logs/large-golem-20211112.zevtc", + boss: Encounter::LargeKittyGolem, + players: &[ + (1, ":Dunje.4863", "Ai Higashi", Guardian, Some(Dragonhunter)), + ], +} + // 100 CM tests test! { |