-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When connecting, allow extra parameter 'password'. Fixes #10
- Loading branch information
Stefan Wille
committed
Feb 2, 2016
1 parent
5b1c555
commit 223233a
Showing
2 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
require "./spec_helper" | ||
# This spec is commented out because it requires a Redis instance | ||
# with password authentication. | ||
# | ||
# describe Redis do | ||
# describe ".new with password" do | ||
# it "connects with a password" do | ||
# redis = Redis.new(host: "localhost", port: 6379, password: "foobared") | ||
# redis.set("foo", "bar") | ||
# end | ||
# end | ||
# end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters