We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
assumedTestBase
1 parent 736a859 commit e37ffefCopy full SHA for e37ffef
spec/suite_helper.rb
@@ -117,20 +117,15 @@ def self.from_jsonld(json)
117
118
def entries
119
# Map entries to resources
120
- attributes['entries'].map {|e| Entry.new(e, base_iri: attributes['baseIri'])}
+ attributes['entries'].map {|e| Entry.new(e)}
121
end
122
123
124
class Entry < JSON::LD::Resource
125
attr_accessor :logger
126
127
- def initialize(json, base_iri:)
128
- @base_iri = base_iri
129
- super
130
- end
131
-
132
def base
133
- RDF::URI(@base_iri || action)
+ RDF::URI(action)
134
135
136
# Alias data and query
0 commit comments