Sha256: 4b1bbd9f72b12c49bb34283e62933d3464961edf23c7ace6bbec857efcf42822
Contents?: true
Size: 679 Bytes
Versions: 2
Compression:
Stored size: 679 Bytes
Contents
# coding: utf-8 require_relative 'spec_helper' describe JSON::LD do describe "test suite" do require_relative 'suite_helper' m = Fixtures::SuiteTest::Manifest.open("#{Fixtures::SuiteTest::SUITE}expand-manifest.jsonld") describe m.name do m.entries.each do |t| specify "#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}" do t.options[:ordered] = false t.run self end specify "#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}" do t.options[:ordered] = true t.run self end end end end end unless ENV['CI']
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
json-ld-3.0.2 | spec/suite_expand_spec.rb |
json-ld-3.0.1 | spec/suite_expand_spec.rb |