Add basic testing infrastructure + initial tests
[onak.git] / t / file-000-add.t
diff --git a/t/file-000-add.t b/t/file-000-add.t
new file mode 100755 (executable)
index 0000000..cd7a4c5
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+# Check we can add a key successfully with the file backend.
+
+set -e
+
+cd t
+../onak -b -c test.conf add < ../keys/noodles.key
+if [ ! -e db/0x2DA8B985 ]; then
+       echo Did not correctly add key using file backend.
+       exit 1
+fi
+
+exit 0