1const std = @import("std");
2const mime = @import("mime");
3const expect = @import("expect").expect;
4
5test {
6 try expect(mime.map.get(".html")).toEqualString("text/html");
7}
8test {
9 try expect(mime.map.get(".sillybogo")).toBeNull();
10}