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

33 lines
893 B
Elm
Raw Permalink Normal View History

2021-02-03 00:22:10 +03:00
module VerifyExamples.Widget.Column0 exposing (..)
-- 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 =
Test.test "#column: \n\n [ Element.text \"Text 1\"\n , Element.text \"Text 2\"\n ]\n |> Widget.column Material.column\n |> always \"Ignore this line\"\n --> \"Ignore this line\"" <|
\() ->
Expect.equal
(
[ Element.text "Text 1"
, Element.text "Text 2"
]
|> Widget.column Material.column
|> always "Ignore this line"
)
(
"Ignore this line"
)