Derive Debug, add comment

This commit is contained in:
bitfl0wer 2023-05-21 15:51:24 +02:00
parent 45bd52dc9b
commit f897351994
1 changed files with 2 additions and 1 deletions

View File

@ -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(),