~ubuntu-branches/ubuntu/utopic/libxml-bare-perl/utopic

« back to all changes in this revision

Viewing changes to t/Basic.t

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Niebur, Jonathan Yu, Ryan Niebur, Nathan Handler
  • Date: 2009-08-12 09:42:24 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090812094224-bo487a59xgom7d8l
Tags: 0.45-1
[ Jonathan Yu ]
* New upstream release
  + UTF-8 handling fixed
  + Self-closing nodes are now printed by the XML function
* Added myself to Uploaders and Copyright
* Use new debhelper 7 short rules format
* Standards-Version 3.8.2 (no changes)
* Rewrote control description
* New upstream release
  + Prevent XML corruption during XML saving
  + Fix strange compilation problems by removing line number defines

[ Ryan Niebur ]
* add debian/clean
* Add myself to Uploaders

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
my $z = $root->{'xml'}{'node'}{'_z'}-$i+1;
67
67
is( substr( $text, $i, $z ), '<node>checkval</node>', '_i and _z vals' );
68
68
 
 
69
# saving test
 
70
( $xml, $root ) = new XML::Bare( file => 't/test.xml' );
 
71
$xml->save();
 
72
 
69
73
sub reparse {
70
74
  my $text = shift;
71
75
  my $nosimp = shift;