mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
19 lines
385 B
Elm
19 lines
385 B
Elm
module GildedRoseTest exposing (..)
|
|
|
|
import Expect exposing (Expectation)
|
|
import Fuzz exposing (Fuzzer, int, list, string)
|
|
import GildedRose exposing (..)
|
|
import Test exposing (..)
|
|
|
|
|
|
suite : Test
|
|
suite =
|
|
test "example test"
|
|
(\_ ->
|
|
let
|
|
foo =
|
|
Item "foo" 10 30
|
|
in
|
|
Expect.equal foo.name "fixme"
|
|
)
|