Sha256: f7d2b62ea7fdd42c5c5926d61bf3a5fb7deeb753cc9e008de468d957236ea7be

Contents?: true

Size: 334 Bytes

Versions: 19

Compression:

Stored size: 334 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Hyperdrive::Errors::NotAcceptable do
  before do
    @error = Hyperdrive::Errors::NotAcceptable.new('application/xml')
  end

  it "returns a 406 status code" do
    @error.http_status_code.must_equal 406
  end

  it "has a message" do
    @error.message.must_match(/xml/)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
hyperdrive-0.0.25 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.24 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.23 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.22 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.21 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.20 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.19 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.18 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.17 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.16 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.15 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.14 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.13 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.12 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.11 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.10 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.9 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.8 spec/hyperdrive/errors/not_acceptable_spec.rb
hyperdrive-0.0.7 spec/hyperdrive/errors/not_acceptable_spec.rb