Sha256: 2b1ae6a466476c15c8fa80fd2d4331cc1289a0f540138f7b60aae36c03fe5b9e

Contents?: true

Size: 314 Bytes

Versions: 19

Compression:

Stored size: 314 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Hyperdrive::Errors::NotFound do
  before do
    @error = Hyperdrive::Errors::NotFound.new
  end

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

  it "has a message" do
    @error.message.must_match(/not be found/)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

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