mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
t4034 (diff --word-diff): add a minimum Perl drier test vector
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
5094d15874
commit
5269edf170
@ -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
|
||||
|
13
t/t4034/perl/expect
Normal file
13
t/t4034/perl/expect
Normal file
@ -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
t/t4034/perl/post
Normal file
22
t/t4034/perl/post
Normal file
@ -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
t/t4034/perl/pre
Normal file
22
t/t4034/perl/pre
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user