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
At the moment it is not possible to start an inspec shell and paste either a control or a describe block and have it execute and report results.
inspec shell
control
describe
I.e:
And then enter:
describe file('/not/here') do it { should_not exist } end
which will only result in:
=> [["describe", [File /not/here], #<Proc:0x000000013f3850@(pry):1>]]
The desired output should be:
A print of the execution using the default cli formatter, without the additonal profile context and version. i.e.:
✔ ssh-1: Allow only SSH Protocol 2
The test should return a result object, which has a result value embedded.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
At the moment it is not possible to start an
inspec shell
and paste either acontrol
or adescribe
block and have it execute and report results.I.e:
And then enter:
which will only result in:
The desired output should be:
A print of the execution using the default cli formatter, without the additonal profile context and version. i.e.:
The test should return a result object, which has a result value embedded.
The text was updated successfully, but these errors were encountered: