Sha256: b597b1f325310194704ad65fa9fc5e683088fb55dba6c0c5cd95febf26e25b0d
Contents?: true
Size: 334 Bytes
Versions: 19
Compression:
Stored size: 334 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Hyperdrive::Errors::InternalServerError do before do @error = Hyperdrive::Errors::InternalServerError.new end it "returns a 500 status code" do @error.http_status_code.must_equal 500 end it "has a message" do @error.message.must_match(/unexpected/) end end
Version data entries
19 entries across 19 versions & 1 rubygems