mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
439c93b115
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
14 lines
347 B
Ruby
14 lines
347 B
Ruby
require "functional/helper"
|
|
|
|
describe "telemetry" do
|
|
include FunctionalHelper
|
|
parallelize_me!
|
|
|
|
describe "detecting CLI runtime context" do
|
|
let(:run_result) { run_inspec_process("run_context") }
|
|
it "should detect cli context" do
|
|
_(run_result.stderr).must_equal ""
|
|
_(run_result.stdout).must_include "cli"
|
|
end
|
|
end
|
|
end
|