]> git.sesse.net Git - vlc/blob - test/native/stats.c
Improve test coverage
[vlc] / test / native / stats.c
1 #include "../pyunit.h"
2 #include <vlc/vlc.h>
3
4 static PyObject *timers_test( PyObject *self, PyObject *args )
5 {
6      Py_INCREF( Py_None );
7      return Py_None;
8 }
9
10 static PyMethodDef native_stats_test_methods[] = {
11    DEF_METHOD( timers_test, "Test timers" )
12    { NULL, NULL, 0, NULL }
13 };
14
15 DECLARE_MODULE( native_stats_test )