-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(fix): address failed tests from new elm-test.
Failures were about unique names and empty test lists. Strip down Tests.elm to just ech current time zone offsets.
- Loading branch information
Showing
4 changed files
with
55 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,7 @@ | ||
module Tests exposing (..) | ||
|
||
import Test exposing (..) | ||
import Date.Extra.CreateTests as CreateTests | ||
import Date.Extra.UtilsTests as UtilsTests | ||
import Date.Extra.CoreTests as CoreTests | ||
import Date.Extra.PeriodTests as PeriodTests | ||
import Date.Extra.DurationTests as DurationTests | ||
import Date.Extra.TimeUnitTests as TimeUnitTests | ||
import Date.Extra.FormatTests as FormatTests | ||
import Date.Extra.CompareTests as CompareTests | ||
import Date.Extra.FieldTests as FieldTests | ||
import Date.Extra.ConfigTests as ConfigTests | ||
import Date.Extra.ConvertingTests as ConvertingTests | ||
import TestUtils exposing (getZoneOffsets) | ||
|
||
|
||
_ = | ||
Debug.log "Tests Current Zone Offsets" | ||
(getZoneOffsets 2016) | ||
|
||
|
||
all : Test | ||
all = | ||
(describe "Date Extra Tests" | ||
[ CreateTests.tests | ||
, UtilsTests.tests | ||
, CoreTests.tests | ||
, PeriodTests.tests | ||
, DurationTests.tests | ||
, TimeUnitTests.tests | ||
, FormatTests.tests | ||
, CompareTests.tests | ||
, FieldTests.tests | ||
, ConfigTests.tests | ||
, ConvertingTests.tests | ||
] | ||
) | ||
(getZoneOffsets 2016) |