From daf4e923d577a6c405386c704d82c9ff6b509753 Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Sat, 27 May 2023 22:51:57 +0200 Subject: [PATCH] Add instance tests --- tests/instance.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/instance.rs diff --git a/tests/instance.rs b/tests/instance.rs new file mode 100644 index 0000000..d3cd5f0 --- /dev/null +++ b/tests/instance.rs @@ -0,0 +1,12 @@ +mod common; + +#[tokio::test] +async fn generate_general_configuration_schema() { + let bundle = common::setup().await; + bundle + .instance + .general_configuration_schema() + .await + .unwrap(); + common::teardown(bundle).await; +}