rename qwaiter to mozo
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe Mozo::Counter do
|
||||
describe 'couchbase connection', broken: true do # couchbase not used at the moment
|
||||
before do
|
||||
@original_connection = Mozo::Counter.connection
|
||||
Mozo::Counter.connection = $cb
|
||||
end
|
||||
|
||||
after do
|
||||
Mozo::Counter.connection = @original_connection
|
||||
end
|
||||
describe '.incr' do
|
||||
it 'sets nonexistent keys to 1' do
|
||||
expect( subject.incr 'nonexistent1' ).to eq 1
|
||||
expect( subject.get 'nonexistent1' ).to eq 1
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'test connection' do
|
||||
describe '.incr' do
|
||||
it 'sets nonexistent keys to 1' do
|
||||
expect( subject.incr 'nonexistent1' ).to eq 1
|
||||
expect( subject.get 'nonexistent1' ).to eq 1
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user