aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/src/test/scala/com/softwaremill/sttp/BasicTests.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/src/test/scala/com/softwaremill/sttp/BasicTests.scala b/tests/src/test/scala/com/softwaremill/sttp/BasicTests.scala
index 00d9e6f..e5a73f7 100644
--- a/tests/src/test/scala/com/softwaremill/sttp/BasicTests.scala
+++ b/tests/src/test/scala/com/softwaremill/sttp/BasicTests.scala
@@ -262,6 +262,11 @@ class BasicTests
.force()
response.body should be("a==/b c:=/d")
}
+
+ name should "post without a body" in {
+ val response = postEcho.send().force()
+ response.body should be("POST /echo")
+ }
}
def headerTests(): Unit = {