We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91bc9ee commit 6d45c36Copy full SHA for 6d45c36
2 files changed
lib/rdf/spec/transaction.rb
@@ -212,10 +212,10 @@
212
with_name = st.dup
213
with_name.graph_name = graph_uri
214
215
- expect do
+ expect do
216
subject.insert(st)
217
subject.execute
218
- end.to change { subject.repository }
+ end.to change { subject.repository.statements }
219
220
expect(subject.repository).to have_statement(with_name)
221
end
spec/transaction_spec.rb
@@ -1,7 +1,8 @@
1
require File.join(File.dirname(__FILE__), 'spec_helper')
2
require 'rdf/spec/transaction'
3
4
-describe RDF::Transaction, skip: "pending fixes to immutability errors" do
+describe RDF::Transaction do
5
+ let(:repository) { RDF::Repository.new }
6
# @see lib/rdf/spec/transaction.rb in rdf-spec
7
it_behaves_like "an RDF::Transaction", RDF::Transaction
8
0 commit comments