You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dda-python-terraform/test/test_terraform.py

20 lines
237 B
Python

9 years ago
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()