Sha256: b7ce79d646276da5f789ac13dd148ec7d19106c948c19fa6ac168dca127e6e9c

Contents?: true

Size: 324 Bytes

Versions: 19

Compression:

Stored size: 324 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

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

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

Version data entries

19 entries across 19 versions & 1 rubygems

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