summaryrefslogtreecommitdiff
path: root/date-fns/src/getQuarter/test.ts
blob: 98766223553076cb9b90e7e3ce0b97654788439f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// @flow
/* eslint-env mocha */

import assert from 'power-assert'
import getQuarter from '.'

describe('getQuarter', function() {
  it('returns the quarter of the given date', function() {
    const result = getQuarter(new Date(2014, 6 /* Jul */, 2))
    assert(result === 3)
  })

  it('accepts a timestamp', function() {
    const result = getQuarter(new Date(2014, 3 /* Apr */, 2).getTime())
    assert(result === 2)
  })

  it('returns NaN if the given date is invalid', function() {
    const result = getQuarter(new Date(NaN))
    assert(isNaN(result))
  })

  it('throws TypeError exception if passed less than 1 argument', function() {
    assert.throws(getQuarter.bind(null), TypeError)
  })
})