20 lines
No EOL
237 B
Python
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()
|
|
|
|
|