Skip to content

Commit

Permalink
Tests Debug commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Jul 1, 2021
1 parent dd11293 commit 3cedcb5
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,18 @@ trait SttpStacClientFSpec[S]

it("itemCreate") {
val item = arbItemShort.arbitrary.resample().etag
client

val res = client
.itemCreate(collectionId, item.entity)
.valueOr(throw _) should be(item)
.valueOr(throw _)

println("-----------")
println(item)
println("-----------")
println(res)
println("-----------")

res should be(item)
}

it("itemUpdate") {
Expand Down

0 comments on commit 3cedcb5

Please sign in to comment.