Skip to content

Commit 274ef88

Browse files
committed
Minor changes in POD. Cosmetic changes in tests
1 parent 3410a93 commit 274ef88

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AnyEvent-RipeRedis version 0.18
1+
AnyEvent-RipeRedis version 0.20
22
======================
33

44
INSTALLATION
@@ -33,8 +33,7 @@ Special thanks
3333

3434
COPYRIGHT AND LICENSE
3535

36-
Copyright (c) 2012-2016, Eugene Ponizovsky, <[email protected]>,
37-
SMS Online, <[email protected]>. All rights reserved.
36+
Copyright (c) 2012-2016, Eugene Ponizovsky, SMS Online. All rights reserved.
3837

3938
This module is free software; you can redistribute it and/or modify it under
4039
the same terms as Perl itself.

lib/AnyEvent/RipeRedis.pm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use base qw( Exporter );
77

8-
our $VERSION = '0.18';
8+
our $VERSION = '0.20';
99

1010
use AnyEvent::RipeRedis::Error;
1111

@@ -1848,8 +1848,7 @@ Ivan Kruglov
18481848
18491849
=head1 COPYRIGHT AND LICENSE
18501850
1851-
Copyright (c) 2012-2016, Eugene Ponizovsky, E<lt>[email protected]E<gt>,
1852-
SMS Online, E<lt>[email protected]E<gt>. All rights reserved.
1851+
Copyright (c) 2012-2016, Eugene Ponizovsky, SMS Online. All rights reserved.
18531852
18541853
This module is free software; you can redistribute it and/or modify it under
18551854
the same terms as Perl itself.

lib/AnyEvent/RipeRedis/Error.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.008000;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '0.18';
7+
our $VERSION = '0.20';
88

99
our %ERROR_CODES = (
1010
E_CANT_CONN => 1,

t/04-commands.t

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ t_error_reply($redis);
6161
t_default_on_error($redis);
6262
t_error_after_exec($redis);
6363
t_discard($redis);
64-
t_execute($redis);
64+
t_execute_method($redis);
6565
t_quit($redis);
6666

6767

@@ -737,7 +737,7 @@ sub t_discard {
737737
return;
738738
}
739739

740-
sub t_execute {
740+
sub t_execute_method {
741741
my $redis = shift;
742742

743743
can_ok( $redis, 'execute' );
@@ -774,7 +774,7 @@ sub t_execute {
774774
}
775775
);
776776

777-
is( $t_reply, 'OK', 'execute' );
777+
is( $t_reply, 'OK', 'execute method' );
778778

779779
return;
780780
}

0 commit comments

Comments
 (0)