0
0
Fork 0

add specs for #client

This commit is contained in:
Gibheer 2012-11-15 17:25:39 +01:00
parent 35150a7c09
commit 553bf48fb9
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
require 'spec_helper'
describe Zero::Request, '#client' do
subject { Zero::Request.new(env) }
let(:env) { EnvGenerator.get('/foo') }
its(:client) { should be_an_instance_of(Zero::Request::Client) }
end