summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorJohannes Rudolph <johannes_rudolph@gmx.de>2012-05-30 17:21:28 +0200
committerJohannes Rudolph <johannes_rudolph@gmx.de>2012-05-30 17:21:28 +0200
commit9dd9dfb91ff353ceb491d13accf5f5d8502e6496 (patch)
tree9a6cf5168550bfc8dada3348b6ca9e6e7f3f82b0 /src/test
parente067ba4efd5f8b87cc57a34a58c7575b128bb8ec (diff)
downloadspray-json-9dd9dfb91ff353ceb491d13accf5f5d8502e6496.tar.gz
spray-json-9dd9dfb91ff353ceb491d13accf5f5d8502e6496.tar.bz2
spray-json-9dd9dfb91ff353ceb491d13accf5f5d8502e6496.zip
`*` now an alias for `elements`
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/cc/spray/json/JsonPathTests.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/cc/spray/json/JsonPathTests.scala b/src/test/scala/cc/spray/json/JsonPathTests.scala
index 8ba75bd..6347002 100644
--- a/src/test/scala/cc/spray/json/JsonPathTests.scala
+++ b/src/test/scala/cc/spray/json/JsonPathTests.scala
@@ -37,7 +37,7 @@ class JsonPathTests extends Specification with SpecHelpers {
"Examples" should {
"All authors" in {
- json extract ("store" / "book" / elements / "author").get[String] must be_==(Seq("Nigel Rees", "Evelyn Waugh"))
+ json extract ("store" / "book" / * / "author").get[String] must be_==(Seq("Nigel Rees", "Evelyn Waugh"))
}
"Author of first book" in {
json extract ("store" / "book" / element(0) / "author").get[String] must be_==("Nigel Rees")