Skip to content

Commit

Permalink
fix config tests for proxy addition
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Hodge committed Feb 25, 2014
1 parent 475c675 commit 712400e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spec/unit/config_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ module Neography
its(:password) { should == nil }
its(:parser) { should == MultiJsonParser}
its(:max_execution_time) { should == 6000 }
its(:proxy) { should == nil }


it "has a hash representation" do
expected_hash = {
Expand All @@ -41,7 +43,8 @@ module Neography
:username => nil,
:password => nil,
:parser => MultiJsonParser,
:max_execution_time => 6000
:max_execution_time => 6000,
:proxy => nil
}
config.to_hash.should == expected_hash
end
Expand Down

0 comments on commit 712400e

Please sign in to comment.