root/lang/perl/Win32-IEHistory/branches/callback/t/30_cookies.t @ 617

Revision 617, 303 bytes (checked in by charsbar, 6 years ago)

lang/perl/Win32-IEHistory: callback branch

  • Property svn:eol-style set to native
Line 
1use strict;
2use warnings;
3use Test::More;
4
5BEGIN {
6  plan skip_all => 'This test is valid only under Win32' if $^O ne 'MSWin32';
7}
8
9plan tests => 2;
10use Win32::IEHistory::Cookies;
11
12ok -f Win32::IEHistory::Cookies->_file, Win32::IEHistory::Cookies->_file;
13ok eval { Win32::IEHistory::Cookies->new }, $@;
Note: See TracBrowser for help on using the browser.