Ox.Image: disable tests

This commit is contained in:
rlx 2016-02-18 14:45:47 +05:30
parent 0d0ab99060
commit 75b5b76157

View file

@ -16,9 +16,9 @@ Ox.load.Image = function(options, callback) {
background <[n]> Background color (RGB or RGBA)
callback <f> Callback function
image <o> Image object
> Ox.Image(1, 1, [255, 0, 0], function(i) { Ox.test(i.pixel([0, 0]), [255, 0, 0, 255]); })
@ Ox.Image(1, 1, [255, 0, 0], function(i) { Ox.test(i.pixel([0, 0]), [255, 0, 0, 255]); })
undefined
> Ox.Image(Ox.UI.PATH + 'themes/oxlight/png/icon16.png', function(i) { i.encode('foo', function(i) { i.decode(function(s) { Ox.test(s, 'foo'); })})})
@ Ox.Image(Ox.UI.PATH + 'themes/oxlight/png/icon16.png', function(i) { i.encode('foo', function(i) { i.decode(function(s) { Ox.test(s, 'foo'); })})})
undefined
@*/
Ox.Image = function() {