File: type.test

package info (click to toggle)
ola 0.10.8.nojsmin-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,656 kB
  • sloc: cpp: 132,274; python: 14,082; javascript: 6,774; sh: 4,616; ansic: 2,189; java: 518; xml: 253; makefile: 183
file content (56 lines) | stat: -rw-r--r-- 524 bytes parent folder | download | duplicates (7)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
=== POSITIVE ===
{
  "type": "array"
}
=== POSITIVE ===
{
  "type": "boolean"
}
=== POSITIVE ===
{
  "type": "integer"
}
=== POSITIVE ===
{
  "type": "null"
}
=== POSITIVE ===
{
  "type": "number"
}
=== POSITIVE ===
{
  "type": "object"
}
=== POSITIVE ===
{
  "type": "string"
}
=== NEGATIVE ===
{
  "type": null
}
=== NEGATIVE ===
{
  "type": "foo"
}
=== NEGATIVE ===
{
  "type": true
}
=== NEGATIVE ===
{
  "type": 1
}
=== NEGATIVE ===
{
  "type": -1
}
=== NEGATIVE ===
{
  "type": 1.2
}
=== NEGATIVE ===
{
  "type": {}
}