diff options
Diffstat (limited to 'lib/test/test_intersection.py')
-rw-r--r-- | lib/test/test_intersection.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/test/test_intersection.py b/lib/test/test_intersection.py index cf4c3d5..7c7dad6 100644 --- a/lib/test/test_intersection.py +++ b/lib/test/test_intersection.py @@ -71,7 +71,7 @@ class intersection_test: plt.savefig(filename) fig.clear() - assert np.all(intersection_area < areas) + assert np.all(intersection_area <= areas) lengths = np.array([len(x._points) for x in intersections]) assert np.all(lengths == [lengths[0]]) @@ -163,6 +163,19 @@ def test5(): Apoly.overlap(chipB1) +@intersection_test(0, 90) +def test6(): + import pyfits + fits = pyfits.open(resolve_imagename(ROOT_DIR, '1904-66_TAN.fits')) + header = fits[0].header + + poly1 = polygon.SphericalPolygon.from_wcs( + header, 1) + poly2 = polygon.SphericalPolygon.from_wcs( + header, 1) + + return [poly1, poly2] + if __name__ == '__main__': if '--profile' not in sys.argv: |