Skip to content

Commit

Permalink
test(Datetime): add conformance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
levithomason committed Sep 14, 2017
1 parent 5f95652 commit 391a8f6
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/specs/addons/Datetime/Datetime-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import Datetime from 'src/addons/Datetime/Datetime'
import * as common from 'test/specs/commonTests'

describe.only('Datetime', () => {
common.isConformant(Datetime)
})
6 changes: 6 additions & 0 deletions test/specs/addons/Datetime/DatetimeDays-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import DatetimeDays from 'src/addons/Datetime/DatetimeDays'
import * as common from 'test/specs/commonTests'

describe.only('DatetimeDays', () => {
common.isConformant(DatetimeDays)
})
6 changes: 6 additions & 0 deletions test/specs/addons/Datetime/DatetimeHours-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import DatetimeHours from 'src/addons/Datetime/DatetimeHours'
import * as common from 'test/specs/commonTests'

describe.only('DatetimeHours', () => {
common.isConformant(DatetimeHours)
})
6 changes: 6 additions & 0 deletions test/specs/addons/Datetime/DatetimeMinutes-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import DatetimeMinutes from 'src/addons/Datetime/DatetimeMinutes'
import * as common from 'test/specs/commonTests'

describe.only('DatetimeMinutes', () => {
common.isConformant(DatetimeMinutes)
})
6 changes: 6 additions & 0 deletions test/specs/addons/Datetime/DatetimeMonths-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import DatetimeMonths from 'src/addons/Datetime/DatetimeMonths'
import * as common from 'test/specs/commonTests'

describe.only('DatetimeMonths', () => {
common.isConformant(DatetimeMonths)
})
6 changes: 6 additions & 0 deletions test/specs/addons/Datetime/DatetimeYears-test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import DatetimeYears from 'src/addons/Datetime/DatetimeYears'
import * as common from 'test/specs/commonTests'

describe.only('DatetimeYears', () => {
common.isConformant(DatetimeYears)
})

0 comments on commit 391a8f6

Please sign in to comment.