-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathbs_float_test.js
95 lines (63 loc) · 2.85 KB
/
bs_float_test.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
'use strict';
var Mt = require("./mt.js");
var Block = require("../../lib/js/block.js");
var Belt_Float = require("../../lib/js/belt_Float.js");
var suites = [/* contents : [] */0];
var test_id = [/* contents */0];
function eq(loc, x, y) {
return Mt.eq_suites(test_id, suites, loc, x, y);
}
function b(loc, x) {
return Mt.bool_suites(test_id, suites, loc, x);
}
function $$throw(loc, x) {
return Mt.throw_suites(test_id, suites, loc, x);
}
function neq(loc, x, y) {
test_id[/* contents */0] = test_id[/* contents */0] + 1 | 0;
suites[/* contents */0] = /* :: */[
/* tuple */[
loc + (" id " + String(test_id[/* contents */0])),
(function (param) {
return /* Neq */Block.__(1, [
x,
y
]);
})
],
suites[/* contents */0]
];
return /* () */0;
}
eq("File \"bs_float_test.ml\", line 14, characters 5-12", 1, 1.0);
eq("File \"bs_float_test.ml\", line 15, characters 5-12", -1, -1.0);
eq("File \"bs_float_test.ml\", line 18, characters 5-12", 1, 1);
eq("File \"bs_float_test.ml\", line 19, characters 5-12", 1, 1);
eq("File \"bs_float_test.ml\", line 20, characters 5-12", 1, 1);
eq("File \"bs_float_test.ml\", line 21, characters 5-12", -1, -1);
eq("File \"bs_float_test.ml\", line 22, characters 5-12", -1, -1);
eq("File \"bs_float_test.ml\", line 23, characters 5-12", -1, -1);
eq("File \"bs_float_test.ml\", line 26, characters 5-12", Belt_Float.fromString("1"), 1.0);
eq("File \"bs_float_test.ml\", line 27, characters 5-12", Belt_Float.fromString("-1"), -1.0);
eq("File \"bs_float_test.ml\", line 28, characters 5-12", Belt_Float.fromString("1.7"), 1.7);
eq("File \"bs_float_test.ml\", line 29, characters 5-12", Belt_Float.fromString("-1.0"), -1.0);
eq("File \"bs_float_test.ml\", line 30, characters 5-12", Belt_Float.fromString("-1.5"), -1.5);
eq("File \"bs_float_test.ml\", line 31, characters 5-12", Belt_Float.fromString("-1.7"), -1.7);
eq("File \"bs_float_test.ml\", line 32, characters 5-12", Belt_Float.fromString("not a float"), undefined);
eq("File \"bs_float_test.ml\", line 35, characters 5-12", String(1.0), "1");
eq("File \"bs_float_test.ml\", line 36, characters 5-12", String(-1.0), "-1");
eq("File \"bs_float_test.ml\", line 37, characters 5-12", String(-1.5), "-1.5");
eq("File \"bs_float_test.ml\", line 41, characters 5-12", 2.0 + 3.0, 5.0);
eq("File \"bs_float_test.ml\", line 42, characters 5-12", 2.0 - 3.0, -1.0);
eq("File \"bs_float_test.ml\", line 43, characters 5-12", 2.0 * 3.0, 6.0);
eq("File \"bs_float_test.ml\", line 44, characters 5-12", 3.0 / 2.0, 1.5);
Mt.from_pair_suites("File \"bs_float_test.ml\", line 46, characters 23-30", suites[/* contents */0]);
var F = 0;
exports.suites = suites;
exports.test_id = test_id;
exports.eq = eq;
exports.b = b;
exports.$$throw = $$throw;
exports.neq = neq;
exports.F = F;
/* Not a pure module */