Sha256: c2300471fa655ea98e60402a77064fe19450a6774a751b8f1cbf80d82626617e

Contents?: true

Size: 456 Bytes

Versions: 1

Compression:

Stored size: 456 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}compact-manifest.jsonld")
    describe m.name do
      m.entries.each do |t|
        specify "#{t.property('@id')}: #{t.name}#{' (negative test)' unless t.positiveTest?}" do
          t.run self
        end
      end
    end
  end
end unless ENV['CI']

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
json-ld-3.0.0 spec/suite_compact_spec.rb