gush 0.0.1 → 0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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