aboutsummaryrefslogtreecommitdiff
path: root/tests/parsing.rs
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2020-07-24 14:11:51 +0200
committerDaniel Schadt <kingdread@gmx.de>2020-07-24 14:11:51 +0200
commit9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d (patch)
tree9c3927c8345f382a82714d8f38515fb1a2324d11 /tests/parsing.rs
parentf6717fc45188870341e9b6185ef5f3102f5a96ae (diff)
downloadevtclib-9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d.tar.gz
evtclib-9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d.tar.bz2
evtclib-9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d.zip
add some testing for analyzers
Diffstat (limited to 'tests/parsing.rs')
-rw-r--r--tests/parsing.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/parsing.rs b/tests/parsing.rs
index 58e890a..324d823 100644
--- a/tests/parsing.rs
+++ b/tests/parsing.rs
@@ -28,6 +28,11 @@ macro_rules! test {
assert_eq!(player.profession(), *profession);
assert_eq!(player.elite(), *elite_spec);
}
+
+ // We don't want to assert the correct outcome here (yet?), but at least ensure we have
+ // analyzer's ready that produce some outcome.
+ assert!(log.analyzer().is_some());
+ assert!(log.analyzer().unwrap().outcome().is_some());
}
};
}