diff --git a/test/unit/JSPopupPlugin/JSPopupPluginSuite.pm b/test/unit/JSPopupPlugin/JSPopupPluginSuite.pm deleted file mode 100755 index ebf9f19..0000000 --- a/test/unit/JSPopupPlugin/JSPopupPluginSuite.pm +++ /dev/null @@ -1,9 +0,0 @@ -package JSPopupPluginSuite; - -use base qw(Unit::TestSuite); - -sub name { 'JSPopupPluginSuite' }; - -sub include_tests { qw(JSPopupPluginTests) }; - -1; diff --git a/test/unit/JSPopupPlugin/JSPopupPluginTests.pm b/test/unit/JSPopupPlugin/JSPopupPluginTests.pm deleted file mode 100755 index 5bf1020..0000000 --- a/test/unit/JSPopupPlugin/JSPopupPluginTests.pm +++ /dev/null @@ -1,32 +0,0 @@ -use strict; - -package JSPopupPluginTests; - -use base qw(FoswikiTestCase); - -use strict; -use Foswiki; -use CGI; - -sub new { - my $self = shift()->SUPER::new(@_); - return $self; -} - -# Set up the test fixture -sub set_up { - my $this = shift; - - $this->SUPER::set_up(); -} - -sub tear_down { - my $this = shift; - $this->SUPER::tear_down(); -} - -sub test_self { - my $this = shift; -} - -1;