Skip to content

Commit

Permalink
dave - removed sout
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Aug 4, 2015
1 parent 98390f5 commit 61e6aba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions RELEASE.md
Expand Up @@ -5,6 +5,9 @@ The main API is fairly stable now, but expect some amount of breaking changes ar
######Master (in dev...)
- Strictness checks around accepted content types, resulting in Unsupported Media Type (415) in case of mismatch.

#####v8.3.1
- Bugfix for Body models not being outputted in Swagger 2 JSON schema.

#####v8.3.0
- Added optional description field to ```RouteSpec```. This appears as the "implementation notes" section in Swagger docs.

Expand Down
Expand Up @@ -52,7 +52,7 @@ abstract class ArgoJsonModuleRendererTest() extends FunSpec with ShouldMatchers
val expected = parse(Source.fromInputStream(this.getClass.getResourceAsStream(s"$name.json")).mkString)

val actual = contentFrom(Await.result(module.toService(Request("/basepath"))))
println(actual)
// println(actual)
parse(actual) shouldEqual expected
}
}
Expand Down
Expand Up @@ -20,7 +20,6 @@ class JsonToJsonSchemaTest extends FunSpec with ShouldMatchers {

val actual = new JsonToJsonSchema().toSchema(model)
actual.node shouldEqual parse(fromInputStream(getClass.getResourceAsStream(s"JsonToJsonSchema_main.json")).mkString)
// println(pretty(obj(actual.definitions: _*)))
obj(actual.definitions: _*) shouldEqual parse(fromInputStream(getClass.getResourceAsStream(s"JsonToJsonSchema_definitions.json")).mkString)
}
}
Expand Down

0 comments on commit 61e6aba

Please sign in to comment.