File: error.rb

package info (click to toggle)
ruby-protocol-http1 0.37.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 384 kB
  • sloc: ruby: 2,373; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 287 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2026, by Samuel Williams.

describe Protocol::HTTP1::BadRequest do
	it "should be a subclass of Protocol::HTTP::BadRequest" do
		expect(Protocol::HTTP1::BadRequest).to be < Protocol::HTTP::BadRequest
	end
end