From 00f2dec105d4d8b4d357dfd68acbad95417442dc Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Sat, 17 Sep 2022 21:36:00 +0000 Subject: [PATCH] tests for ongoing auction info query --- tests/test_auction_flow.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/test_auction_flow.sh b/tests/test_auction_flow.sh index 9e884cc..25445cf 100755 --- a/tests/test_auction_flow.sh +++ b/tests/test_auction_flow.sh @@ -61,7 +61,15 @@ colineard tx colinearcore new-bid $(get_last_auction_index) 0 \ colineard q colinearcore auction-bids $(get_last_auction_index) \ | jq -M ".bids | length" \ - | assert_eq 2 "Number of auction bids" + | assert_eq 2 "Number of auction bids in auctionBids query" + +colineard q colinearcore auction-info $(get_last_auction_index) \ + | jq -rM ".bids | length" \ + | assert_eq 2 "Number of auction bids in auctionInfo query" + +colineard q colinearcore auction-info $(get_last_auction_index) \ + | jq -rM ".verifiedProviders" \ + | assert_eq "[]" "Verified Provider list in auctionInfo query" before=$(get_balance $BOB uusdc)