summaryrefslogtreecommitdiff
path: root/spec/javascripts/extensions/array_spec.js
blob: 4b871fe967d536d8a1ffe9ef20cac427b291b4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* eslint-disable space-before-function-paren, no-var */

require('~/extensions/array');

(function() {
  describe('Array extensions', function() {
    describe('first', function() {
      return it('returns the first item', function() {
        var arr;
        arr = [0, 1, 2, 3, 4, 5];
        return expect(arr.first()).toBe(0);
      });
    });
    describe('last', function() {
      return it('returns the last item', function() {
        var arr;
        arr = [0, 1, 2, 3, 4, 5];
        return expect(arr.last()).toBe(5);
      });
    });
  });
}).call(window);