summaryrefslogtreecommitdiffstats
path: root/tests/ci_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ci_test.rs')
-rw-r--r--tests/ci_test.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/ci_test.rs b/tests/ci_test.rs
index 6eca774..d51a274 100644
--- a/tests/ci_test.rs
+++ b/tests/ci_test.rs
@@ -430,3 +430,9 @@ async fn admin() {
.await
.expect("failed to delete hook");
}
+
+#[test]
+fn ssh_url_deserialization() {
+ let data = include_str!("./repo_data.json");
+ assert!(serde_json::from_str::<Repository>(data).is_ok());
+}