summaryrefslogtreecommitdiff
path: root/spec/unit/request/patch_spec.rb
blob: 1c2d3c915cc1b2d079078c790bf80664b147dbbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'spec_helper'

describe Zero::Request, '#patch?' do
  subject { Zero::Request.new(env) }

  context "with a post request" do
    let(:env) { EnvGenerator.post('/foo') }
    its(:post?) { should be(true) }
  end

  context "with a get request" do
    let(:env) { EnvGenerator.get('/foo') }
    its(:post?) { should be(false) }
  end
end