diff --git a/spec/integration/rest_gremlin_fail_spec.rb b/spec/integration/rest_gremlin_fail_spec.rb index a2c92bc..34a6ab1 100644 --- a/spec/integration/rest_gremlin_fail_spec.rb +++ b/spec/integration/rest_gremlin_fail_spec.rb @@ -25,7 +25,7 @@ describe "break gremlin" do - it "can can't handle node and relationship indexes with the same name" do + it "can can't handle node and relationship indexes with the same name", :break_gremlin => true do new_node1 = @neo.create_node new_node2 = @neo.create_node new_relationship = @neo.create_relationship("friends", new_node1, new_node2) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 867f001..657babe 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -15,4 +15,5 @@ def generate_text(length=8) RSpec.configure do |c| c.filter_run_excluding :slow => true + c.filter_run_excluding :break_gremlin => true end \ No newline at end of file