Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ source "http://rubygems.org"

gemspec

gem "rdf", git: "git://github.com/ruby-rdf/rdf.git", branch: "develop"
gem "rdf", git: "git://github.com/ruby-rdf/rdf.git", branch: "develop"
gem "rdf-isomorphic", git: "git://github.com/ruby-rdf/rdf-isomorphic.git", branch: "develop"

group :development do
gem "wirble"
Expand All @@ -15,4 +16,4 @@ end
group :development, :test do
gem 'simplecov', require: false, platform: :mri_21 # Travis doesn't understand 22 yet.
gem 'coveralls', require: false, platform: :mri_21 # Travis doesn't understand 22 yet.
end
end
2 changes: 1 addition & 1 deletion lib/rdf/spec/dataset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
describe '#isolation_level' do
it 'is an allowable isolation level' do
expect(described_class::ISOLATION_LEVELS)
.to include(subject.isolation_level)
.to include(dataset.isolation_level)
end
end
end
4 changes: 2 additions & 2 deletions lib/rdf/spec/repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@

describe '#delete_insert' do
it 'updates transactionally' do
expect(subject).to receive(:commit_transaction).and_call_original
expect(mutable).to receive(:commit_transaction).and_call_original
statement = RDF::Statement(:s, RDF::URI.new("urn:predicate:1"), :o)

subject.delete_insert([statement], [statement])
mutable.delete_insert([statement], [statement])
end
end
end
Expand Down