]> git.sesse.net Git - vlc/blob - test/native_libvlc/native_libvlc_test.c
Skeleton for testing libvlc
[vlc] / test / native_libvlc / native_libvlc_test.c
1 #include "../pyunit.h"
2
3 static PyObject *create_destroy( PyObject *self, PyObject *args )
4 {
5      /* Test stuff here */
6      
7      Py_INCREF( Py_None );
8      return Py_None;
9 }
10
11 static PyMethodDef native_libvlc_test_methods[] = {
12    DEF_METHOD( create_destroy, "Create and destroy" )
13    { NULL, NULL, 0, NULL }
14 };
15
16 DECLARE_MODULE( native_libvlc_test )