Django

Code

Show
Ignore:
Timestamp:
07/21/08 21:43:47 (6 months ago)
Author:
jbronn
Message:

gis: Fixed #7873, GEOSGeometry equivalence comparison with None should not raise an exception. Thanks, Denis.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/gis/django/contrib/gis/tests/test_geos.py

    r7463 r8040  
    108108 
    109109    def test01j_eq(self): 
    110         "Testing equivalence with WKT." 
     110        "Testing equivalence." 
    111111        p = fromstr('POINT(5 23)') 
    112112        self.assertEqual(p, p.wkt) 
     
    115115        self.assertEqual(ls, ls.wkt) 
    116116        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) 
    117123 
    118124    def test02a_points(self):