Skip to content

Commit

Permalink
Adjustments for 2016-08-03 dev branch
Browse files Browse the repository at this point in the history
* Error message changed
  • Loading branch information
elrayle committed Aug 3, 2016
1 parent 90e8d59 commit 947368e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ gemspec

gem 'activesupport', '< 5.0.0' if RUBY_VERSION =~ /2\.1\..*/
gem 'pry-byebug' unless ENV["CI"]

gem 'active-triples', :github => 'ActiveTriples/ActiveTriples', :branch => 'develop'
2 changes: 1 addition & 1 deletion spec/ld4l/foaf_rdf/agent_rdf_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
end

it 'should not be settable' do
expect{ subject.set_subject! RDF::URI('http://example.org/moomin2') }.to raise_error
expect{ subject.set_subject! RDF::URI('http://example.org/moomin2') }.to raise_error(RuntimeError, 'Refusing to update URI when one is already assigned!')
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion spec/ld4l/foaf_rdf/person_rdf_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
end

it 'should not be settable' do
expect{ subject.set_subject! RDF::URI('http://example.org/moomin2') }.to raise_error
expect{ subject.set_subject! RDF::URI('http://example.org/moomin2') }.to raise_error(RuntimeError, 'Refusing to update URI when one is already assigned!')
end
end
end
Expand Down

0 comments on commit 947368e

Please sign in to comment.