inspec/test/functional/inspec_schema_test.rb
Ryan Davis 07dc5e3192 First pass at cleaning deprecations for old minitest/spec-style tests.
3 files left to go, and they're behaving oddly so I'm leaving them out
in this pass. Looks like 21 deprecations left.

Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-10-03 13:45:19 -07:00

22 lines
546 B
Ruby

require "functional/helper"
describe "inspec schema" do
include FunctionalHelper
describe "extracting the platforms schema export" do
it "can execute a platforms schema command" do
out = inspec("schema platforms")
data = JSON.parse(out.stdout)
_(data.class).must_equal Array
_(data.size).must_be(:>, 1)
_(data[0]["name"]).must_equal "aix"
families = %w{aix unix os}
_(data[0]["families"]).must_equal families
_(out.stderr).must_equal ""
assert_exit_code 0, out
end
end
end