%PDF- %PDF-
| Direktori : /var/www/projetos/suporte.iigd.com.br/plugins/glpiinventory/lib/lazy.js-0.5.1/spec/ |
| Current File : /var/www/projetos/suporte.iigd.com.br/plugins/glpiinventory/lib/lazy.js-0.5.1/spec/map_spec.js |
comprehensiveSequenceTest('map', {
cases: [
{
input: [1, 2, 3],
params: [function(x) { return x + 1; }],
result: [2, 3, 4]
},
{
label: 'pluck-style',
input: [{ foo: 1 }, { foo: 2 }, { foo: 3 }],
params: ['foo'],
result: [1, 2, 3]
}
],
aliases: ['collect', 'pluck'],
arrayLike: true,
supportsAsync: true
});
describe("map", function() {
it("can also map objects", function() {
var keyValuePairs = Lazy({ foo: "FOO", bar: "BAR" })
.map(function(v, k) { return [k, v]; });
expect(keyValuePairs).toComprise([["foo", "FOO"], ["bar", "BAR"]]);
});
describe("map -> min", function() {
it("works as expected", function() {
var min = Lazy([1, 2, 3]).map(increment).min();
expect(min).toEqual(2);
});
});
describe("map -> max", function() {
it("works as expected", function() {
var max = Lazy([1, 2, 3]).map(increment).max();
expect(max).toEqual(4);
});
});
});
describe("invoke", function() {
ensureLaziness(function() { Lazy(people).invoke("getName"); });
it("invokes the named method on every element in the collection", function() {
var names = Lazy(people).invoke("getName");
expect(names).toComprise(["David", "Mary", "Lauren", "Adam", "Daniel", "Happy"]);
});
});