Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. yesodSpecWithSiteSupplierWith :: YesodDispatch site => (forall r . () => (site -> IO r) -> inner -> IO r) -> YesodSpec site -> SpecWith inner

    sydtest-yesod Test.Syd.Yesod.Def

    Using a function that supplies a site, based on an inner resource, run a test suite.

  2. yesodE2ESpec :: URI -> YesodSpec (E2E site) -> Spec

    sydtest-yesod Test.Syd.Yesod.E2E

    Run an end-to-end yesod test suite against a remote server at the given URI. If you would like to write tests that can be run against both a local and a remote instance of your site, you can use the following type:

    mySpec :: (Yesod site, RedirectUrl site (Route App)) => YesodSpec site
    mySpec = do
    it "responds 200 OK to GET HomeR" $ do
    get HomeR
    statusIs 200
    

  3. yesodE2ESpec' :: URI -> YesodSpec (E2E site) -> TestDef '[Manager] ()

    sydtest-yesod Test.Syd.Yesod.E2E

    Like yesodE2ESpec, but doesn't set up the Manager for you. If you are running the end-to-end test against a server that uses https://, make sure to use a TLS-enabled Manager. You can do this using beforeAll newTlsManager.

  4. package yesod-auth

    Authentication for Yesod. API docs and the README are available at http://www.stackage.org/package/yesod-auth

  5. package yesod-static

    Static file serving subsite for Yesod Web Framework. API docs and the README are available at http://www.stackage.org/package/yesod-static

  6. yesodDispatch :: YesodDispatch site => YesodRunnerEnv site -> Application

    hledger-web Hledger.Web.Import

    No documentation available.

  7. yesodMiddleware :: (Yesod site, ToTypedContent res) => HandlerFor site res -> HandlerFor site res

    hledger-web Hledger.Web.Import

    A Yesod middleware, which will wrap every handler function. This allows you to run code before and after a normal handler. Default: the defaultYesodMiddleware function. Since: 1.1.6

  8. yesodRender :: Yesod y => y -> ResolvedApproot -> Route y -> [(Text, Text)] -> Text

    hledger-web Hledger.Web.Import

    No documentation available.

  9. yesodRunner :: (ToTypedContent res, Yesod site) => HandlerFor site res -> YesodRunnerEnv site -> Maybe (Route site) -> Application

    hledger-web Hledger.Web.Import

    No documentation available.

  10. yesodSubDispatch :: YesodSubDispatch sub master => YesodSubRunnerEnv sub master -> Application

    hledger-web Hledger.Web.Import

    No documentation available.

Page 13 of many | Previous | Next