Changeset 480
- Timestamp:
- 12/07/08 23:30:27 (3 years ago)
- Location:
- wiki-toolkit-plugin-rss-reader/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
wiki-toolkit-plugin-rss-reader/trunk/CHANGES
r281 r480 1 1.6 2 * Ensure that the unit test cleans up its temporary file 3 (RT #41500; thanks ANDK) 4 1 5 2006-05-14: 1.5 2 6 * Move to Wiki::Toolkit name. -
wiki-toolkit-plugin-rss-reader/trunk/t/rss.t
r281 r480 57 57 # earlier in the fake LWP::Simple. 58 58 59 use File::Temp qw(tempfile); 60 my ($tmp, $rss_file) = tempfile(); 59 use File::Temp; 60 # Use OO version of File::Temp; file will be unlinked when $tmp goes 61 # out of scope 62 my $tmp = new File::Temp; 63 my $rss_file = $tmp->filename; 61 64 print $tmp $LWP::Simple::RSS; 62 65 close $tmp;
