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