-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #268 from chungyc/justify-content
Support `stretch` in `justify-content`.
- Loading branch information
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{-#LANGUAGE OverloadedStrings#-} | ||
|
||
module Clay.FlexboxSpec where | ||
|
||
import Clay.Common | ||
import Clay.Flexbox | ||
import Clay.Render | ||
import Clay.Stylesheet | ||
|
||
import Test.Hspec | ||
import Data.Text.Lazy (Text) | ||
|
||
compactRender :: Css -> Text | ||
compactRender = renderWith compact [] | ||
|
||
spec :: Spec | ||
spec = do | ||
describe "justify-content" $ do | ||
it "is inherit" $ do | ||
(compactRender $ justifyContent inherit) `shouldBe` "{justify-content:inherit}" | ||
|
||
it "is center" $ do | ||
(compactRender $ justifyContent center) `shouldBe` "{justify-content:center}" | ||
|
||
it "is flex-end" $ do | ||
(compactRender $ justifyContent flexEnd) `shouldBe` "{justify-content:flex-end}" | ||
|
||
it "is flex-start" $ do | ||
(compactRender $ justifyContent flexStart) `shouldBe` "{justify-content:flex-start}" | ||
|
||
it "is space-around" $ do | ||
(compactRender $ justifyContent spaceAround) `shouldBe` "{justify-content:space-around}" | ||
|
||
it "is space-between" $ do | ||
(compactRender $ justifyContent spaceBetween) `shouldBe` "{justify-content:space-between}" | ||
|
||
it "is space-evenly" $ do | ||
(compactRender $ justifyContent spaceEvenly) `shouldBe` "{justify-content:space-evenly}" | ||
|
||
it "is stretch" $ do | ||
(compactRender $ justifyContent stretch) `shouldBe` "{justify-content:stretch}" | ||
|
||
it "is other" $ do | ||
(compactRender $ justifyContent $ other "random") `shouldBe` "{justify-content:random}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters