aboutsummaryrefslogtreecommitdiff
path: root/src/test/mod.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2017-12-15 11:50:07 +0100
committerKatharina Fey <kookie@spacekookie.de>2017-12-15 11:50:29 +0100
commitc30007af8d89a04164d9418727e4bb794b0dd3d4 (patch)
treea40d4f298b4d03a94310146a5c38fd6c1bf0a5c4 /src/test/mod.rs
parent9f6376f27ac4931d559bc69e7b788a40fe8ee192 (diff)
Adding testing module – trying to find out where the bug is!
Diffstat (limited to '')
-rw-r--r--src/test/mod.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/mod.rs b/src/test/mod.rs
new file mode 100644
index 0000000..ffba71a
--- /dev/null
+++ b/src/test/mod.rs
@@ -0,0 +1,12 @@
+//! Unit testing module for lockchain
+//!
+//! Purpose of this module is to properly test all the functions involved
+//! in lockchain, since even a small bug can completely break crypto
+//!
+#![cfg(test)]
+
+
+#[test]
+fn init() {
+
+} \ No newline at end of file