gush 0.0.1 → 0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,15 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe Gush::NullLogger do
4
- let(:logger) { Gush::NullLogger.new }
5
-
6
- it 'responds to logger methods and ignores them' do
7
- [:info, :debug, :error, :fatal].each do |method|
8
- logger.send(method, "message")
9
- end
10
- end
11
-
12
- it 'works when block with message is passed' do
13
- logger.info("progname") { "message" }
14
- end
15
- end
data/spec/redis.conf DELETED
@@ -1,2 +0,0 @@
1
- port 33333
2
- bind 127.0.0.1