mirror of
https://github.com/inspec/inspec
synced 2025-02-17 06:28:40 +00:00
8 lines
149 B
Ruby
8 lines
149 B
Ruby
require_relative "artifact_helper"
|
|
|
|
class TestInspecEnv < ArtifactTest
|
|
def test_env
|
|
skip if windows?
|
|
assert_artifact("env bash")
|
|
end
|
|
end
|