implement empty client

This commit is contained in:
OMGeeky
2023-04-15 16:22:46 +02:00
parent 655df48ba3
commit fcbaf6926c
3 changed files with 25 additions and 8 deletions

View File

@@ -217,6 +217,12 @@ async fn test_select_limit_1() {
assert_eq!(q.len(), 1);
}
#[test]
fn test_empty_client(){
let empty_client = BigqueryClient::empty();
debug!("empty client: {:?}", empty_client);
}
fn init_logger() {
let global_level = LevelFilter::Info;
let own_level = LevelFilter::Trace;