blob: 52dd3addda69bd9e5bea9fde0342f11772273c70 (
plain)
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
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { isFormFile } from "./formfile.ts";
test(function multipartIsFormFile(): void {
assertEquals(
isFormFile({
filename: "foo",
type: "application/json"
}),
true
);
assertEquals(
isFormFile({
filename: "foo"
}),
false
);
});
test(function isFormFileShouldNotThrow(): void {
assertEquals(
isFormFile({
filename: "foo",
type: "application/json",
hasOwnProperty: "bar"
}),
true
);
assertEquals(isFormFile(Object.create(null)), false);
});
|