]> git.vpit.fr Git - perl/modules/Test-Leaner.git/commitdiff
Better variable names
authorVincent Pit <vince@profvince.com>
Fri, 24 Dec 2010 17:21:08 +0000 (18:21 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 24 Dec 2010 17:21:08 +0000 (18:21 +0100)
lib/Test/Leaner.pm

index a022c92bedc56565fc3b671e60705b995b3878ab..d88ecf6779afe7397af9342eff79ebd8aa0d0562 100644 (file)
@@ -295,8 +295,8 @@ BEGIN {
   local $@;
   eval <<"IS_BINOP";
 sub is_$name (\$\$;\$) {
- my (\$x, \$y, \$desc) = \@_;
- \@_ = ((\$x $op \$y), \$desc);
+ my (\$got, \$expected, \$desc) = \@_;
+ \@_ = ((\$got $op \$expected), \$desc);
  goto &ok;
 }
 IS_BINOP
@@ -315,10 +315,10 @@ sub is ($$;$) {
 }
 
 sub isnt ($$;$) {
- my ($x, $y, $desc) = @_;
+ my ($got, $expected, $desc) = @_;
  no warnings 'uninitialized';
  @_ = (
-  ((defined $x xor defined $y) or $x ne $y),
+  ((defined $got xor defined $expected) or $got ne $expected),
   $desc,
  );
  goto &ok;
@@ -331,10 +331,10 @@ sub isnt ($$;$) {
 }
 
 sub cmp_ok ($$$;$) {
- my ($x, $op, $y, $desc) = @_;
+ my ($got, $op, $expected, $desc) = @_;
  my $name = $binops{$op};
  croak("Operator $op not supported") unless defined $name;
- @_ = ($x, $y, $desc);
+ @_ = ($got, $expected, $desc);
  no strict 'refs';
  goto &{__PACKAGE__."::is_$name"};
 }