gpu-compute-chain/tests/test_auction_flow.sh

15 lines
368 B
Bash
Raw Normal View History

2022-09-02 13:48:12 -07:00
#!/bin/bash
# import utilities
HERE=$(cd $(dirname $BASH_SOURCE) && pwd)
source $HERE/testutil.sh
2022-09-03 00:41:54 -07:00
cosmos-testd tx cosmostest new-bid 0 800 \
-y --from alice \
| expect_fail "Can't create bids for nonexistent auctions"
2022-09-02 13:48:12 -07:00
2022-09-03 00:41:54 -07:00
cosmos-testd tx cosmostest new-auction asdf asdf 100 token 1662155879 \
-y --from bob \
| expect_success "New auction is created"
2022-09-02 13:48:12 -07:00