pr3-elm/aufgaben/tests/Test03/ListStuffTests.elm

14 lines
309 B
Elm
Raw Normal View History

module Test03.ListStuffTests exposing (..)
import Expect exposing (Expectation)
import Fuzz exposing (Fuzzer, int, list, string)
import Test exposing (..)
import Test03.ListStuff
test1 : Test
test1 =
test "Length1 method is not equal 1"
(\_ -> Expect.equal 1 (Test03.ListStuff.length1 [2] 0))