]>
Commit | Line | Data |
---|---|---|
d53a283b MG |
1 | #!/usr/bin/perl -w |
2 | use v5.14; | |
3 | ||
4 | use Test::More tests => 3; | |
5 | BEGIN { use_ok('App::XMMS2::Notifier') }; | |
6 | ||
7 | ######################### | |
8 | ||
9 | can_ok('App::XMMS2::Notifier', qw/run notify_libnotify/); | |
10 | ||
11 | TODO: { | |
12 | local $TODO = 'libpurple notify not written yet'; | |
13 | can_ok('App::XMMS2::Notifier', 'notify_libpurple'); | |
14 | } |