1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# frozen_string_literal: true
# Released under the MIT License.
# Copyright, 2023-2025, by Samuel Williams.
require "protocol/http/header/etag"
describe Protocol::HTTP::Header::ETag do
let(:header) {subject.parse(description)}
with 'W/"abcd"' do
it "is weak" do
expect(header).to be(:weak?)
end
end
with '"abcd"' do
it "is not weak" do
expect(header).not.to be(:weak?)
end
end
with "#<<" do
let(:header) {subject.new}
it "can replace values" do
header << '"abcd"'
expect(header).not.to be(:weak?)
header << 'W/"abcd"'
expect(header).to be(:weak?)
end
end
with ".coerce" do
it "coerces string to ETag" do
result = subject.coerce('"xyz"')
expect(result).to be_a(subject)
expect(result).to be == '"xyz"'
end
end
end
|