diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-01-17 14:56:48 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-01-17 14:56:48 -0500 |
commit | cd2ddb57a5a20e308cee912e26f2383733c11b3c (patch) | |
tree | 69df04604836860bd40405b81aee11468efa8567 /t | |
parent | 4bede22e4f2189a570ea43dec3b087052ef85edc (diff) | |
download | ikiwiki-cd2ddb57a5a20e308cee912e26f2383733c11b3c.tar ikiwiki-cd2ddb57a5a20e308cee912e26f2383733c11b3c.tar.gz |
load rpc xml lib on the fly
This way, enabling the plugin via websetup is safe, it can't leave
ikiwiki in a broken state.
Diffstat (limited to 't')
-rwxr-xr-x | t/syntax.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/syntax.t b/t/syntax.t index 9d5cbc373..d09d17f7f 100755 --- a/t/syntax.t +++ b/t/syntax.t @@ -5,8 +5,8 @@ use Test::More; my @progs="ikiwiki.in"; my @libs="IkiWiki.pm"; -# monotone, external, blogspam, amazon_s3 skipped since they need perl modules -push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v monotone.pm | grep -v external.pm | grep -v blogspam.pm | grep -v amazon_s3.pm`; +# monotone, external, amazon_s3 skipped since they need perl modules +push @libs, map { chomp; $_ } `find IkiWiki -type f -name \\*.pm | grep -v monotone.pm | grep -v external.pm | grep -v amazon_s3.pm`; push @libs, 'IkiWiki/Plugin/skeleton.pm.example'; plan(tests => (@progs + @libs)); |