Skip to content
This repository has been archived by the owner on Sep 21, 2019. It is now read-only.

Commit

Permalink
bugfix, xml() method for version4 was broken
Browse files Browse the repository at this point in the history
  • Loading branch information
berekuk committed Jul 21, 2008
1 parent ff2ee97 commit 4552272
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions libguitarpro-perl/GuitarPro/NoteEffects/NoteEffects4.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package GuitarPro::NoteEffects::NoteEffects4;
use strict; use strict;
use warnings; use warnings;


our @ISA = qw(GuitarPro::NoteEffects);

use GuitarPro::Header; use GuitarPro::Header;
use GuitarPro::Bend; use GuitarPro::Bend;


Expand Down
6 changes: 6 additions & 0 deletions libguitarpro-perl/debian/changelog
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,9 @@
libguitarpro-perl (0.3.1-1) unstable; urgency=low

* bugfix, xml() method for version4 was broken

-- Vyacheslav Matjukhin <mmcleric@gmail.com> Tue, 22 Jul 2008 02:21:05 +0400

libguitarpro-perl (0.3.1) unstable; urgency=low libguitarpro-perl (0.3.1) unstable; urgency=low


* gpcheck manpage * gpcheck manpage
Expand Down
5 changes: 4 additions & 1 deletion libguitarpro-perl/t/piece.t
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl #!/usr/bin/perl


use Test::More tests => 2; use Test::More tests => 3;


use strict; use strict;
use warnings; use warnings;
Expand All @@ -14,3 +14,6 @@ BEGIN {
my $piece = new GuitarPro::Piece({file => 't/data/test.gp4'}); my $piece = new GuitarPro::Piece({file => 't/data/test.gp4'});
is($piece->version, 'FICHIER GUITAR PRO v4.06'); is($piece->version, 'FICHIER GUITAR PRO v4.06');


my $xml = $piece->xml();
ok('xml() method works');

0 comments on commit 4552272

Please sign in to comment.