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