]> git.sesse.net Git - vlc/blob - test/native/init.c
Clean-up test
[vlc] / test / native / init.c
1 #include "tests.h"
2
3 static PyMethodDef native_libvlc_test_methods[] = {
4    DEF_METHOD( create_destroy, "Create and destroy" )
5    DEF_METHOD( exception_test, "Test Exception handling" )
6    DEF_METHOD( playlist_test, "Test Playlist interaction" )
7    DEF_METHOD( vlm_test, "Test VLM" )
8    DEF_METHOD( timers_test, "Test timers" )
9    DEF_METHOD( i18n_atof_test, "Test i18n_atof" )
10    DEF_METHOD( url_decode_test, "URL decoding" )
11    { NULL, NULL, 0, NULL }
12 };
13
14 DECLARE_MODULE( native_libvlc_test )