Sha256: 034b97521dd90fd4929e895ce5219a3101d38dd729d618f92ff4ed4aff054d99

Contents?: true

Size: 555 Bytes

Versions: 2

Compression:

Stored size: 555 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/flatten-manifest.jsonld")
    describe m.name do
      m.entries.each do |t|
        specify "#{t.property('input')}: #{t.name}#{' (negative test)' unless t.positiveTest?}" do
          pending "context corner-case" if t.input_loc.end_with?('flatten-0044-in.jsonld')
          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_flatten_spec.rb
json-ld-2.2.0 spec/suite_flatten_spec.rb