We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following is detecting errors during execution, but not reporting them properly.
https://github.com/unifio/covalence/blob/master/lib/covalence/rake/rspec/envs_spec.rb
The problem is that
expect(TerraformCli.terraform_plan(path, args: args)).to be true
should be
expect { TerraformCli.terraform_plan(path, args: args) }.to_not raise_error
This class was also not properly updated for changes made in the v0.6+
The text was updated successfully, but these errors were encountered:
or just have both.
Sorry, something went wrong.
No branches or pull requests
The following is detecting errors during execution, but not reporting them properly.
https://github.com/unifio/covalence/blob/master/lib/covalence/rake/rspec/envs_spec.rb
The problem is that
expect(TerraformCli.terraform_plan(path, args: args)).to be true
should be
expect { TerraformCli.terraform_plan(path, args: args) }.to_not raise_error
This class was also not properly updated for changes made in the v0.6+
The text was updated successfully, but these errors were encountered: