()
| 71 | } |
| 72 | |
| 73 | func (s *IntegrationTestSuite) TestCloseCmd() { |
| 74 | val := s.network.Validators[0] |
| 75 | |
| 76 | args := []string{ |
| 77 | "--id=1", |
| 78 | "--from=" + val.Address.String(), |
| 79 | "-y", |
| 80 | } |
| 81 | _, err := testutilcli.ExecTestCLICmd(val.ClientCtx, cli.GetCloseCmd(), args) |
| 82 | require.NoError(s.T(), err) |
| 83 | } |
| 84 | |
| 85 | func TestIntegrationTestSuite(t *testing.T) { |
| 86 | suite.Run(t, new(IntegrationTestSuite)) |