File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ source "http://rubygems.org"
22
33gemspec
44
5- gem "rdf" , git : "git://github.com/ruby-rdf/rdf.git" , branch : "develop"
5+ gem "rdf" , git : "git://github.com/ruby-rdf/rdf.git" , branch : "develop"
6+ gem "rdf-isomorphic" , git : "git://github.com/ruby-rdf/rdf-isomorphic.git" , branch : "develop"
67
78group :development do
89 gem "wirble"
1516group :development , :test do
1617 gem 'simplecov' , require : false , platform : :mri_21 # Travis doesn't understand 22 yet.
1718 gem 'coveralls' , require : false , platform : :mri_21 # Travis doesn't understand 22 yet.
18- end
19+ end
Original file line number Diff line number Diff line change 4141 describe '#isolation_level' do
4242 it 'is an allowable isolation level' do
4343 expect ( described_class ::ISOLATION_LEVELS )
44- . to include ( subject . isolation_level )
44+ . to include ( dataset . isolation_level )
4545 end
4646 end
4747end
Original file line number Diff line number Diff line change 3131
3232 describe '#delete_insert' do
3333 it 'updates transactionally' do
34- expect ( subject ) . to receive ( :commit_transaction ) . and_call_original
34+ expect ( mutable ) . to receive ( :commit_transaction ) . and_call_original
3535 statement = RDF ::Statement ( :s , RDF ::URI . new ( "urn:predicate:1" ) , :o )
3636
37- subject . delete_insert ( [ statement ] , [ statement ] )
37+ mutable . delete_insert ( [ statement ] , [ statement ] )
3838 end
3939 end
4040 end
You can’t perform that action at this time.
0 commit comments