summaryrefslogtreecommitdiff
path: root/spec/unit/request/client_spec.rb
blob: 5ccd155b84ae0d627aaf97ea7aaffc2e07e73336 (plain) (blame)
1
2
3
4
5
6
7
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