(self, workspace_setup_teardown)
| 424 | assert "Command: terraform workspace show -no-color" in caplog.messages |
| 425 | |
| 426 | def test_delete_workspace(self, workspace_setup_teardown): |
| 427 | workspace_name = "test" |
| 428 | with workspace_setup_teardown(workspace_name, delete=False) as tf: |
| 429 | tf.set_workspace("default") |
| 430 | ret, out, err = tf.delete_workspace(workspace_name) |
| 431 | assert ret == 0 |
| 432 | assert err == "" |
| 433 | |
| 434 | def test_delete_workspace_with_args(self, workspace_setup_teardown, caplog): |
| 435 | workspace_name = "test" |
nothing calls this directly
no test coverage detected