Sha256: 784a632eeda14dd76c9c37fec3d7fdc8ba7f906cead83f92c7d85f984b514ab1
Contents?: true
Size: 362 Bytes
Versions: 9
Compression:
Stored size: 362 Bytes
Contents
require 'spec_helper' describe APIMatchers::Headers::Base do let(:setup) { OpenStruct.new } subject { APIMatchers::Headers::Base.new(setup) } describe "#matches?" do it "should raise Not Implement Exception" do expect { subject.matches?('application/xml') }.to raise_error(NotImplementedError, "not implemented on #{subject}") end end end
Version data entries
9 entries across 9 versions & 1 rubygems