(self)
| 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") |
| 287 | tf = Terraform(working_dir=cwd) |
| 288 | tf.read_state_file() |
| 289 | assert tf.tfstate.modules[0]["path"] == ["default"] |
| 290 | |
| 291 | def test_state_default_backend(self): |
| 292 | cwd = os.path.join(current_path, "test_tfstate_file3") |
nothing calls this directly
no test coverage detected