Skip to content

Commit

Permalink
one more time
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdemarzi committed Nov 29, 2012
1 parent ed6e960 commit 12c27f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions spec/unit/config_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Neography
describe Config do

subject{Config.new}
subject(:config) { Config.new }

context "defaults" do

Expand Down Expand Up @@ -37,7 +37,7 @@ module Neography
:password => nil,
:parser => { :parser => MultiJsonParser }
}
subject.to_hash.should == expected_hash
config.to_hash.should == expected_hash
end

end
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/connection_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Neography
describe Connection do

subject(:connection)
subject(:connection) { Connection.new }

context "defaults" do

Expand Down

0 comments on commit 12c27f2

Please sign in to comment.