Skip to content

Commit

Permalink
t4034 (diff --word-diff): add a minimum Perl drier test vector
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jan 18, 2011
1 parent 5094d15 commit 5269edf
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions t/t4034-diff-words.sh
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ test_language_driver html
test_language_driver java
test_language_driver objc
test_language_driver pascal
test_language_driver perl
test_language_driver php
test_language_driver python
test_language_driver ruby
Expand Down
13 changes: 13 additions & 0 deletions t/t4034/perl/expect
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<BOLD>diff --git a/pre b/post<RESET>
<BOLD>index f6610d3..e8b72ef 100644<RESET>
<BOLD>--- a/pre<RESET>
<BOLD>+++ b/post<RESET>
<CYAN>@@ -4,8 +4,8 @@<RESET>

package Frotz;<RESET>
sub new {<RESET>
my <GREEN>(<RESET>$class<GREEN>, %opts)<RESET> = <RED>shift<RESET><GREEN>@_<RESET>;
return bless { <GREEN>xyzzy => "nitfol", %opts<RESET> }, $class;
}<RESET>

__END__<RESET>
22 changes: 22 additions & 0 deletions t/t4034/perl/post
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/perl

use strict;

package Frotz;
sub new {
my ($class, %opts) = @_;
return bless { xyzzy => "nitfol", %opts }, $class;
}

__END__
=head1 NAME
frotz - Frotz
=head1 SYNOPSIS
use frotz;
$nitfol = new Frotz();
=cut
22 changes: 22 additions & 0 deletions t/t4034/perl/pre
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/perl

use strict;

package Frotz;
sub new {
my $class = shift;
return bless {}, $class;
}

__END__
=head1 NAME
frotz - Frotz
=head1 SYNOPSIS
use frotz;
$nitfol = new Frotz();
=cut

0 comments on commit 5269edf

Please sign in to comment.