From 3c9583eae7231f71d3ae0f7cc12e1967cf56826d Mon Sep 17 00:00:00 2001 From: Heinrich Klobuczek Date: Wed, 22 Jan 2014 09:40:46 -0800 Subject: [PATCH] corrected failing spec --- spec/unit/config_spec.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spec/unit/config_spec.rb b/spec/unit/config_spec.rb index 9e38b54..418f554 100644 --- a/spec/unit/config_spec.rb +++ b/spec/unit/config_spec.rb @@ -15,6 +15,7 @@ module Neography its(:gremlin_path) { should == '/ext/GremlinPlugin/graphdb/execute_script' } its(:log_file) { should == 'neography.log' } its(:log_enabled) { should == false } + its(:logger) { should == nil } its(:slow_log_threshold) { should == 0 } its(:max_threads) { should == 20 } its(:authentication) { should == nil } @@ -33,6 +34,7 @@ module Neography :gremlin_path => '/ext/GremlinPlugin/graphdb/execute_script', :log_file => 'neography.log', :log_enabled => false, + :logger => nil, :slow_log_threshold => 0, :max_threads => 20, :authentication => nil,