On 2010-11-21 18:57, André-Patrick Bubel wrote:
> Is there a way to automatically test the code anyway using this cython
> function?

I'm afraid this is not possible for the moment.

What is possible, is to write the code you want to test as a function in
a .pyx file and then test that function.  Something like

def test_foobar():
        """
        This function tests the foobar functionality in Sage.

        TESTS::

                sage: test_foobar()
        """
        # Cython code here

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to