rspec-terraspace
Terraspec rspec helper methods. The usual testing process is:
- Build a test harness. The test harness is a generated terraspace project with the specified modules and stacks.
- Runs a
terraspace up
(terraform apply
) to create real resources. - Check the resources. In this case, it simply checks for the terraform output.
- Runs a
terraspace down
(terraform destroy
) to clean up the real resources.
Test harness location
Where is the generated test harness located?
The test hardness is materialized in /tmp/terraspace/test-harnesses/NAME
by default. The build root can be controlled with TS_RSPEC_BUILD_ROOT
env var.
So if you set it: export TS_RSPEC_BUILD_ROOT=~/environment/terraspace-test-harnesses
. It will be built at ~/environment/terraspace-test-harnesses/NAME
instead.
Module-Level and Project-Level Tests
The test helpers support both module-level and project-level tests. See:
Installation
Add this line to your application's Gemfile:
gem 'rspec-terraspace'
And then execute:
$ bundle install