packages feed

hablo-1.1.0.1: test/Mock/Blog/URL.hs

module Mock.Blog.URL (
      noCards
    , simple
  ) where

import Blog.URL (URL(..))

simple :: URL
simple = URL {
      cards = Just "https://test.net"
    , comments = Nothing
    , rss = Nothing
  }

noCards :: URL
noCards = simple {cards = Nothing}