play-mockws icon indicating copy to clipboard operation
play-mockws copied to clipboard

Mock WS client for Play Framework

Results 33 play-mockws issues
Sort by recently updated
recently updated
newest added

Updates [org.scalameta:scalafmt-core](https://github.com/scalameta/scalafmt) from 2.7.5 to 3.5.9. [GitHub Release Notes](https://github.com/scalameta/scalafmt/releases/tag/v3.5.9) - [Version Diff](https://github.com/scalameta/scalafmt/compare/v2.7.5...v3.5.9) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates [org.scoverage:sbt-scoverage](https://github.com/scoverage/sbt-scoverage) from 1.8.2 to 2.0.2. [GitHub Release Notes](https://github.com/scoverage/sbt-scoverage/releases/tag/v2.0.2) - [Version Diff](https://github.com/scoverage/sbt-scoverage/compare/v1.8.2...v2.0.2) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates [org.scalatest:scalatest](https://github.com/scalatest/scalatest) from 3.2.8 to 3.2.13. [GitHub Release Notes](https://github.com/scalatest/scalatest/releases/tag/release-3.2.13) - [Version Diff](https://github.com/scalatest/scalatest/compare/release-3.2.8...release-3.2.13) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates [org.scala-lang.modules:scala-collection-compat](https://github.com/scala/scala-collection-compat) from 2.1.6 to 2.8.1. [GitHub Release Notes](https://github.com/scala/scala-collection-compat/releases/tag/v2.8.1) - [Version Diff](https://github.com/scala/scala-collection-compat/compare/v2.1.6...v2.8.1) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Updates * [com.typesafe.play:play](https://github.com/playframework/playframework) * [com.typesafe.play:play-ahc-ws](https://github.com/playframework/playframework) * [com.typesafe.play:play-test](https://github.com/playframework/playframework) from 2.8.1 to 2.8.16. [GitHub Release Notes](https://github.com/playframework/playframework/releases/tag/2.8.16) - [Version Diff](https://github.com/playframework/playframework/compare/2.8.1...2.8.16) I'll automatically update this PR to resolve conflicts as long as you don't...

Updates [org.xerial.sbt:sbt-sonatype](https://github.com/xerial/sbt-sonatype) from 3.9.7 to 3.9.13. [GitHub Release Notes](https://github.com/xerial/sbt-sonatype/releases/tag/3.9.13) - [Release Notes](https://github.com/xerial/sbt-sonatype/blob/master/ReleaseNotes.md) - [Version Diff](https://github.com/xerial/sbt-sonatype/compare/3.9.7...3.9.13) I'll automatically update this PR to resolve conflicts as long as you don't change it...

When the production code uses code similar to the following: ```scala wsClient .url(".../something?someQueryParam=some value") .get() ``` And a test defines MockWS like this: ```scala MockWS { case ("GET", ".../something") =>...

I want to parse dynamic url into case url of MockWS like this ``` val ws = MockWS { case ("POST", mockServer.getUrl + "/predict-nationality") => Action { Ok(Json.obj( "ARE" ->...

Updates [org.scalacheck:scalacheck](https://github.com/typelevel/scalacheck) from 1.15.4 to 1.16.0. [GitHub Release Notes](https://github.com/typelevel/scalacheck/releases/tag/v1.16.0) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip...

Wanted to get your thoughts on this. As of play 2.6 the standalone client is separated from play. So it would be nice to have this mocking library dependent as...