Skip to content

Commit

Permalink
add one more test case for postgis geom option
Browse files Browse the repository at this point in the history
  • Loading branch information
tminglei committed Jul 13, 2015
1 parent 278a577 commit 8c10f87
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,8 @@ class PgPostGISSupportTest {
assertEquals(true, q11.first)
val q12 = GeomTests.filter(_.id === polygonbean.id.bind).map(r => multiPoints.bind.dWithin(r.geom, 10d.bind))
assertEquals(true, q12.first)
val q121 = GeomTests.filter(_.id === polygonbean.id.bind).map(r => multiPoints.bind.?.dWithin(r.geom, 10d.bind))
assertEquals(Some(true), q121.first)
val q13 = GeomTests.filter(_.id === polygonbean.id.bind).map(r => point.bind.dFullyWithin(r.geom, 200d.bind))
assertEquals(true, q13.first)

Expand Down

0 comments on commit 8c10f87

Please sign in to comment.