The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package # hide from cpan
    Test::Redis;

# A dummy package for test 06-other-redis-classes.t, which
# tests that Resque can accept classes other than Redis as
# its redis object. This gives us support for Redis::Fast, or
# for any other class that implements a Redis client.

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

1;