Remove broken test from working one.
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 15 Jan 2010 19:58:11 +0000 (11:58 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 15 Jan 2010 19:58:11 +0000 (11:58 -0800)
tests/run/cpp_templates.pyx

index dbfdbc789b5ca10062cc510fed9ecede3d70de09..6b7239837cf439c74b5409a33ff1b2a3d256e886 100644 (file)
@@ -62,19 +62,3 @@ def test_pair(int i, double x):
         del pair
 
 
-
-def test_wrap_pair(int i, double x):
-    """
-    >>> test_wrap_pair(1, 1.5)
-    (1, 1.5, True, False)
-    >>> test_wrap_pair(2, 2.25)
-    (2, 2.25, True, False)
-    """
-    cdef Pair[int, double] *pair
-    cdef Wrap[Pair[int, double]] *wrap
-    try:
-        pair = new Pair[int, double](i, x)
-        warp = new Wrap[Pair[int, double]](deref(pair))
-        return wrap.get().first(), wrap.get().second(), deref(wrap) == deref(wrap)
-    finally:
-        del pair, wrap