Skip to content

Commit

Permalink
test indexOf
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed May 5, 2021
1 parent 56587ad commit 37af72b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions tests/List/ExtraTests.elm
@@ -0,0 +1,26 @@
module List.ExtraTests exposing (..)

import Expect
import List.Extra exposing (..)
import Test exposing (..)


indexOfTests : Test
indexOfTests =
describe "indexOf"
[ test "gives the index when an item is in the list" <|
\_ ->
[ 1 ]
|> indexOf 1
|> Expect.equal (Just 0)
, test "gives the first index when the item is present multiple times" <|
\_ ->
[ 1, 1 ]
|> indexOf 1
|> Expect.equal (Just 0)
, test "does not give an index if the item isn't in the list" <|
\_ ->
[ 1 ]
|> indexOf 2
|> Expect.equal Nothing
]

0 comments on commit 37af72b

Please sign in to comment.