deno.land / std@0.173.0 / media_types / get_charset_test.ts

get_charset_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";import { getCharset } from "./mod.ts";
Deno.test({ name: "media-types - getCharset()", fn() { const fixtures = [ ["text/plain", "UTF-8"], ["text/html", "UTF-8"], ["application/foo", undefined], ["application/news-checkgroups", "US-ASCII"], ["application/news-checkgroups; charset=UTF-8", "UTF-8"], ] as const; for (const [fixture, expected] of fixtures) { assertEquals(getCharset(fixture), expected); } },});
std

Version Info

Tagged at
a year ago