25 lines
427 B
Haskell
25 lines
427 B
Haskell
module Mock.Blog.URL (
|
|
noCards
|
|
, simple
|
|
, subPath
|
|
) where
|
|
|
|
import Blog.URL (URLs(..))
|
|
import Mock.URL (prefixedTestSite, testSite)
|
|
|
|
simple :: URLs
|
|
simple = URLs {
|
|
cards = Just testSite
|
|
, comments = Nothing
|
|
, rss = Nothing
|
|
}
|
|
|
|
subPath :: URLs
|
|
subPath = URLs {
|
|
cards = Just prefixedTestSite
|
|
, comments = Nothing
|
|
, rss = Nothing
|
|
}
|
|
|
|
noCards :: URLs
|
|
noCards = simple {cards = Nothing}
|