elm-ui-widgets/tests/VerifyExamples/Widget/AsItem0.elm

33 lines
995 B
Elm
Raw Normal View History

2021-02-05 18:59:34 +03:00
module VerifyExamples.Widget.AsItem0 exposing (..)
2021-02-03 00:22:10 +03:00
-- This file got generated by [elm-verify-examples](https://github.com/stoeffel/elm-verify-examples).
-- Please don't modify this file by hand!
import Test
import Expect
import Widget exposing (..)
import Widget.Material as Material
import Element
spec0 : Test.Test
spec0 =
2021-02-05 18:59:34 +03:00
Test.test "#asItem: \n\n Element.text \"Just a text\"\n |> Widget.asItem\n |> List.singleton\n |> Widget.itemList (Material.cardColumn Material.defaultPalette)\n |> always \"Ignore this line\"\n --> \"Ignore this line\"" <|
2021-02-03 00:22:10 +03:00
\() ->
Expect.equal
(
Element.text "Just a text"
2021-02-05 18:59:34 +03:00
|> Widget.asItem
2021-02-03 00:22:10 +03:00
|> List.singleton
|> Widget.itemList (Material.cardColumn Material.defaultPalette)
|> always "Ignore this line"
)
(
"Ignore this line"
)