summaryrefslogtreecommitdiff
path: root/tests/authorization/server_test.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-27 14:50:34 -0600
committermo khan <mo@mokhan.ca>2025-06-27 14:50:34 -0600
commit2f895218df8115d90ba03253024f6974a1c4f21b (patch)
tree9583b47e0325a5ba824f0c6be6d0518dc08a7104 /tests/authorization/server_test.rs
parent58bf47abcd34e7d6973de4013207473e8b7f0b3e (diff)
test: add tests for grpc server
Diffstat (limited to 'tests/authorization/server_test.rs')
-rw-r--r--tests/authorization/server_test.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/authorization/server_test.rs b/tests/authorization/server_test.rs
new file mode 100644
index 00000000..6001e978
--- /dev/null
+++ b/tests/authorization/server_test.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn test_create_server() {
+ assert!(authzd::create_server().is_ok());
+ }
+}