a5b1c977ad98cf6d72e29ca292eecf4e191dbab3
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function (t, a) {
4         var x = [1, 2, {}, 4];
5         a(t.call(x), x, "Returns same array");
6         a.deep(x, [], "Empties array");
7 };