Changeset 8745


Ignore:
Timestamp:
10/13/09 13:20:30 (2 years ago)
Author:
szabgab
Message:

merge  http://svn.perlide.org/padre/trunk/Padre/ -r8742:8744 to Padre-0.48 release branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Padre-0.48/t/04-config.t

    r8674 r8745  
    5050} 
    5151 
     52# The config version number is a requirement for every config and 
     53# the only key which is allowed to life in an empty config. 
     54my %Test_Config = (Version => $Padre::Config::VERSION); 
     55 
    5256# ... and that they don't leave a permanent state. 
    5357is_deeply( 
    54     +{ %{ $config->human } }, {}, 
     58    +{ %{ $config->human } }, \%Test_Config, 
    5559    'Defaults do not leave permanent state (human)', 
    5660); 
    5761is_deeply( 
    58     +{ %{ $config->host } }, {}, 
     62    +{ %{ $config->host } }, \%Test_Config, 
    5963    'Defaults do not leave permanent state (host)', 
    6064); 
Note: See TracChangeset for help on using the changeset viewer.