From 12095132d59bb2e4ab663825344dc029c23b0ecd Mon Sep 17 00:00:00 2001 From: bitfl0wer Date: Tue, 23 May 2023 13:15:57 +0200 Subject: [PATCH] Add instance, guild, channel to TestBundle --- tests/integration.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index e004496..0d5389c 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -1,5 +1,5 @@ use chorus::{ - api::{AuthUsername, RegisterSchema, User}, + api::{AuthUsername, Channel, Guild, RegisterSchema, User}, instance::Instance, URLBundle, }; @@ -8,6 +8,9 @@ use chorus::{ struct TestBundle { urls: URLBundle, user: User, + instance: Instance, + guild: Guild, + channel: Channel, } // Set up a test by creating an Instance and a User. Reduces Test boilerplate.