Changeset 842


Ignore:
Timestamp:
11/09/08 02:00:32 (3 years ago)
Author:
szabgab
Message:

remove the tests that were related to the Parrot plugin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/t/82-plugin-manager.t

    r787 r842  
    88use Data::Dumper qw(Dumper); 
    99 
    10 use Test::More tests => 17; 
     10use Test::More tests => 15; 
    1111 
    1212use t::lib::Padre; 
     
    2626 
    2727# check if we have the plugins that come with Padre 
    28 is (keys %{$plugin_m1->plugins}, 2); 
    29 is $plugin_m1->plugins->{Parrot}, 'Padre::Plugin::Parrot'; 
     28is (keys %{$plugin_m1->plugins}, 1); 
    3029is $plugin_m1->plugins->{'Development::Tools'},  'Padre::Plugin::Development::Tools'; 
    3130 
    3231# try load again 
    33 my $st = $plugin_m1->_load_plugin('Parrot'); 
     32my $st = $plugin_m1->_load_plugin('Development::Tools'); 
    3433is $st, undef; 
    3534 
     
    4241 
    4342$plugin_m2->_load_plugins_from_inc(); 
    44 is(keys %{$plugin_m2->plugins}, 4, 'correct number of test plugins') 
     43is(keys %{$plugin_m2->plugins}, 3, 'correct number of test plugins') 
    4544    or diag(Dumper(\$plugin_m2->plugins)); 
    4645 
    47 is $plugin_m2->plugins->{Parrot},                'Padre::Plugin::Parrot'; 
    4846is $plugin_m2->plugins->{'Development::Tools'},  'Padre::Plugin::Development::Tools'; 
    4947is $plugin_m2->plugins->{TestPlugin},            'Padre::Plugin::TestPlugin'; 
Note: See TracChangeset for help on using the changeset viewer.