nacx commented on this pull request.
> + public void testApplyTags() {
+ api().applyTags(SERVER_ID, assetType,
Collections.singletonList(TagInfo.create(tagKeyId, "jcloudsValue")));
+ }
+
+ @Test
+ public void testListTags() {
+ PagedIterable<Tag> response = api().listTags();
+ assertTrue(FluentIterable.from(response.concat().toList()).anyMatch(new
Predicate<Tag>() {
+ @Override
+ public boolean apply(Tag input) {
+ return input.tagKeyId().equals(tagKeyId);
+ }
+ }), String.format("Couldn't find tagKeyId %s in listTags response",
tagKeyId));
+ }
+
+ @Test
Configure this test to be run after the `listTags`and `listTagKeys` tests?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/425#pullrequestreview-82009108