aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-01-16 20:28:31 +0000
committerRobin Krahl <robin.krahl@ireas.org>2019-01-16 21:29:38 +0100
commit679791064169a37ad9d88b910b7553ebf7133c07 (patch)
tree7cba0b9a818fded1ce11afb091784674aac2c645 /tests
parentd72641832a6c8622cf6468987b5b0aa5bd4c1c39 (diff)
downloadnitrokey-rs-679791064169a37ad9d88b910b7553ebf7133c07.tar.gz
nitrokey-rs-679791064169a37ad9d88b910b7553ebf7133c07.tar.bz2
Document and test empty Git versions
If libnitrokey has not been built from a clone of the Git repository, the Git version string may be empty.
Diffstat (limited to 'tests')
-rw-r--r--tests/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/lib.rs b/tests/lib.rs
index 06de0ad..c92e224 100644
--- a/tests/lib.rs
+++ b/tests/lib.rs
@@ -2,7 +2,6 @@
fn get_library_version() {
let version = nitrokey::get_library_version();
- assert!(!version.git.is_empty());
- assert!(version.git.starts_with("v"));
+ assert!(version.git.is_empty() || version.git.starts_with("v"));
assert!(version.major > 0);
}