Package

doobie

specs2

Permalink

package specs2

Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. specs2
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type AnalysisMatchers[M[_]] = specs2.analysismatchers.AnalysisMatchers[M]

    Permalink
  2. type Checker[M[_]] = specs2.analysisspec.Checker[M]

    Permalink
  3. type IOAnalysisMatchers = specs2.analysismatchers.IOAnalysisMatchers

    Permalink
  4. type IOChecker = specs2.analysisspec.IOChecker

    Permalink

Value Members

  1. object analysismatchers

    Permalink
  2. object analysisspec

    Permalink

    Module with a mix-in trait for specifications that enables checking of doobie Query and Update values.

    Module with a mix-in trait for specifications that enables checking of doobie Query and Update values.

    // An example specification, taken from the examples project.
    object AnalysisTestSpec extends Specification with AnalysisSpec {
    
      // The transactor to use for the tests.
      val transactor = Transactor.fromDriverManager[IO](
        "org.postgresql.Driver",
        "jdbc:postgresql:world",
        "postgres", ""
      )
    
      // Now just mention the queries. Arguments are not used.
      check(MyDaoModule.findByNameAndAge(null, 0))
      check(MyDaoModule.allWoozles)
    
    }

Deprecated Value Members

  1. object imports

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 0.5.0) import doobie.specs2._

Inherited from AnyRef

Inherited from Any

Ungrouped