From 31ff7b924367ddfd38e19e12fb9c7c5bb5966c71 Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Sun, 21 May 2023 15:51:24 +0200 Subject: [PATCH] Derive Debug, add comment --- tests/integration.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 57f567a..e790c5d 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -4,12 +4,13 @@ use chorus::{ URLBundle, }; +#[derive(Debug)] struct TestBundle { urls: URLBundle, user: User, } -// Set up a test by creating an Instance and a User. +// Set up a test by creating an Instance and a User. Reduces Test boilerplate. async fn setup() -> TestBundle { let urls = URLBundle::new( "http://localhost:3001/api".to_string(),