diff options
Diffstat (limited to 'node_modules/es5-ext/test/math/ceil-10.js')
| -rw-r--r-- | node_modules/es5-ext/test/math/ceil-10.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/node_modules/es5-ext/test/math/ceil-10.js b/node_modules/es5-ext/test/math/ceil-10.js new file mode 100644 index 00000000..1c4a3866 --- /dev/null +++ b/node_modules/es5-ext/test/math/ceil-10.js @@ -0,0 +1,8 @@ +"use strict"; + +module.exports = function (t, a) { + a(t(55.51, -1), 55.6); + a(t(51, 1), 60); + a(t(-55.59, -1), -55.5); + a(t(-59, 1), -50); +}; |
