All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zio.test.ZIOSpecAbstractVersionSpecific.scala Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
package zio.test

trait ZIOSpecAbstractVersionSpecific {

  /**
   * This implicit conversion macro will ensure that the provided ZIO effect
   * does not require more than the provided environment.
   *
   * If it is missing requirements, it will report a descriptive error message.
   * Otherwise, the effect will be returned unmodified.
   */
  implicit def validateEnv[R1, R, E](spec: Spec[R, E]): Spec[R1, E] =
    macro SpecLayerMacros.validate[R1, R]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy