%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/max_spec.js |
describe("max", function() {
it("returns the maximum value from the collection", function() {
expect(Lazy(people).map(Person.getAge).max()).toEqual(63);
});
it("uses a value selector, if supplied", function() {
expect(Lazy(people).max(Person.getAge)).toBe(david);
});
});