use quilt_rs::manifest_from_uri;
use quilt_rs::installed_packages;
use quilt_rs::Client;
#[tokio::test]
async fn test_browse_remote_package() {
let manifest = manifest_from_uri(utils::TEST_URI_STRING.to_string()).await.unwrap();
assert!(manifest.rows.len() > 0);
let installed = installed_packages().await.unwrap();
println!("installed: {:#?}", installed)
}
#[tokio::test]
async fn test_manifest3_from_uri() {
let client = Client::new().await;
let result = client.manifest3_from_uri(utils::TEST_URI_STRING.to_string()).await;
assert!(result.is_ok());
let manifest = result.unwrap();
assert!(manifest.rows.len() > 0);
}