mirror of
https://gitea.invidious.io/iv-org/shard-athena-negotiation.git
synced 2024-08-15 00:53:23 +00:00
11 lines
356 B
Crystal
11 lines
356 B
Crystal
abstract struct NegotiatorTestCase < ASPEC::TestCase
|
|
def test_best_exception_handling : Nil
|
|
expect_raises ArgumentError, "priorities should not be empty." do
|
|
@negotiator.best "foo/bar", [] of String
|
|
end
|
|
|
|
expect_raises ArgumentError, "The header string should not be empty." do
|
|
@negotiator.best "", {"text/html"}
|
|
end
|
|
end
|
|
end
|