dda-python-terraform/test/test_terraform.py
Freddy Tan 4ebdc607dc update
2015-12-31 15:15:51 +08:00

20 lines
No EOL
237 B
Python

from terraform import Terraform
class TestTerraform:
def test_apply(self):
tf = Terraform()
tf.apply()
def test_refresh(self):
tf = Terraform()
tf.refresh()
def test_destroy(self):
tf = Terraform()
tf.destroy()