Changeset 8040
- Timestamp:
- 07/21/08 21:43:47 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis/django/contrib/gis/geos/base.py
r7404 r8040 167 167 if isinstance(other, basestring): 168 168 return self.wkt == other 169 el se:169 elif isinstance(other, GEOSGeometry): 170 170 return self.equals_exact(other) 171 else: 172 return False 171 173 172 174 def __ne__(self, other): django/branches/gis/django/contrib/gis/tests/test_geos.py
r7463 r8040 108 108 109 109 def test01j_eq(self): 110 "Testing equivalence with WKT."110 "Testing equivalence." 111 111 p = fromstr('POINT(5 23)') 112 112 self.assertEqual(p, p.wkt) … … 115 115 self.assertEqual(ls, ls.wkt) 116 116 self.assertNotEqual(p, 'bar') 117 # Error shouldn't be raise on equivalence testing with 118 # an invalid type. 119 for g in (p, ls): 120 self.assertNotEqual(g, None) 121 self.assertNotEqual(g, {'foo' : 'bar'}) 122 self.assertNotEqual(g, False) 117 123 118 124 def test02a_points(self):
