Packages

p

doobie

specs2

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]
  2. type Checker[M[_]] = specs2.analysisspec.Checker[M]
  3. type IOAnalysisMatchers = specs2.analysismatchers.IOAnalysisMatchers
  4. type IOChecker = specs2.analysisspec.IOChecker

Value Members

  1. object analysismatchers
  2. object analysisspec

    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.
    class 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)
    
    }

Inherited from AnyRef

Inherited from Any

Ungrouped