Show
Ignore:
Timestamp:
07/27/07 15:15:54 (1 year ago)
Author:
kindlund
Message:

Marked Log::Dispatch::Syslog as an explicit dependency to help improve unit testing.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/trunk/t/honeyclient_util_config.t

    r521 r781  
    6969require_ok('Data::Dumper'); 
    7070use Data::Dumper; 
     71 
     72# Make sure Log::Dispatch::Syslog loads 
     73BEGIN { use_ok('Log::Dispatch::Syslog') 
     74        or diag("Can't load Log::Dispatch::Syslog package. Check to make sure the package library is correctly listed within the path."); } 
     75require_ok('Log::Dispatch::Syslog'); 
     76use Log::Dispatch::Syslog; 
    7177} 
    7278