Compare commits
2 commits
5f70e66039
...
3b62feb476
Author | SHA1 | Date | |
---|---|---|---|
3b62feb476 | |||
|
23e3e29e56 |
3 changed files with 13 additions and 0 deletions
|
@ -5,6 +5,15 @@ use std::collections::HashSet;
|
|||
|
||||
use crate::tests::a_config;
|
||||
|
||||
//
|
||||
use super::*;
|
||||
|
||||
use anyhow::Result;
|
||||
use kxio::network::StatusCode;
|
||||
use std::collections::HashSet;
|
||||
|
||||
use crate::tests::a_config;
|
||||
|
||||
use kxio::net::{Method, Net, Url};
|
||||
|
||||
#[tokio::test]
|
||||
|
|
|
@ -18,6 +18,7 @@ mod tests;
|
|||
#[tokio::main]
|
||||
#[cfg(not(tarpaulin_include))]
|
||||
async fn main() -> std::result::Result<(), Box<dyn std::error::Error>> {
|
||||
Ok(run(&StandardPrinter, Network::new_real()).await?)
|
||||
let github_workspace = std::env::var("GITHUB_WORKSPACE").context("GITHUB_WORKSPACE")?;
|
||||
let fs = kxio::fs::new(github_workspace);
|
||||
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
//
|
||||
use super::*;
|
||||
|
||||
use anyhow::Result;
|
||||
use pretty_assertions::assert_eq;
|
||||
use kxio::net::{Method, Net, Url};
|
||||
use printer::TestPrinter;
|
||||
use url::Url;
|
||||
|
||||
#[tokio::test]
|
||||
async fn run_with_some_invalids() /* -> Result<()> */
|
||||
|
|
Loading…
Reference in a new issue