Sha256: 012ee37738fcf43dabeba9f3088b9d3d8c45bc69a37c314dcb8dee7fade4fd44

Contents?: true

Size: 653 Bytes

Versions: 2

Compression:

Stored size: 653 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}tests/toRdf-manifest.jsonld")
    describe m.name do
      m.entries.each do |t|
        specify "#{t.property('input')}: #{t.name}#{' (negative test)' unless t.positiveTest?}" do
          skip "Native value fidelity" if %w(toRdf-0035-in.jsonld).include?(t.property('input'))
          pending "Generalized RDF" if %w(toRdf-0118-in.jsonld).include?(t.property('input'))
          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-2.2.1 spec/suite_to_rdf_spec.rb
json-ld-2.2.0 spec/suite_to_rdf_spec.rb