elm-test init

Signed-off-by: Skyball2000 <thomas3654william@gmail.com>
main
Yan Wittmann 2022-11-07 09:21:49 +01:00 committed by Skyball2000
parent 4444a5125c
commit 902d5725d9
3 changed files with 37 additions and 21 deletions

View File

@ -19,7 +19,11 @@
} }
}, },
"test-dependencies": { "test-dependencies": {
"direct": {}, "direct": {
"indirect": {} "elm-explorations/test": "2.0.1"
},
"indirect": {
"elm/bytes": "1.0.8"
}
} }
} }

View File

@ -1,3 +1,5 @@
module Pflichtuebung_01.Pu01 exposing (..)
type alias Day = type alias Day =
Int Int

View File

@ -0,0 +1,10 @@
module Pflichtuebung_01.Pu01Tests exposing (..)
import Expect exposing (Expectation)
import Fuzz exposing (Fuzzer, int, list, string)
import Test exposing (..)
suite : Test
suite =
todo "Implement our first test. See https://package.elm-lang.org/packages/elm-explorations/test/latest for how to do this!"