Skip to content

Commit aaa0101

Browse files
committed
also add a get test
1 parent 2d3a901 commit aaa0101

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tests/tags.rs

+11
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,22 @@ async fn tags_smoke<C: quic_rpc::Connector<RpcService>>(tags: tags::Client<C>) -
8787
tags.set("b", Hash::new("b")).await?;
8888
tags.set("c", Hash::new("c")).await?;
8989

90+
assert_eq!(
91+
tags.get("b").await?,
92+
Some(TagInfo {
93+
name: "b".into(),
94+
hash: Hash::new("b"),
95+
format: BlobFormat::Raw,
96+
})
97+
);
98+
9099
tags.delete("b").await?;
91100
let stream = tags.list().await?;
92101
let res = to_vec(stream).await?;
93102
assert_eq!(res, expected(["a", "c"]));
94103

104+
assert_eq!(tags.get("b").await?, None);
105+
95106
Ok(())
96107
}
97108

0 commit comments

Comments
 (0)