summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/main_test.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/main_test.rs b/tests/main_test.rs
index 5c6016f6..69c6eda1 100644
--- a/tests/main_test.rs
+++ b/tests/main_test.rs
@@ -1,2 +1,8 @@
#[cfg(test)]
-mod tests {}
+mod tests {
+ #[test]
+ fn test_create_server() {
+ let result = authzd::create_server();
+ assert!(result.is_ok());
+ }
+}