(self)
| 277 | assert out == "" |
| 278 | |
| 279 | def test_state_data(self): |
| 280 | cwd = os.path.join(current_path, "test_tfstate_file") |
| 281 | tf = Terraform(working_dir=cwd, state="tfstate.test") |
| 282 | tf.read_state_file() |
| 283 | assert tf.tfstate.modules[0]["path"] == ["root"] |
| 284 | |
| 285 | def test_state_default(self): |
| 286 | cwd = os.path.join(current_path, "test_tfstate_file2") |
nothing calls this directly
no test coverage detected