source: t/02-isa.t @ 9f3297

Revision 9f3297, 231 bytes checked in by Tomash Brechko <tomash.brechko@…>, 4 years ago (diff)

Split the test case.

  • Property mode set to 100644
Line 
1use warnings;
2use strict;
3
4use Test::More;
5
6use FindBin;
7
8use lib "$FindBin::Bin";
9use Memd;
10
11if ($Memd::memd) {
12    plan tests => 1;
13} else {
14    plan skip_all => 'Not connected';
15}
16
17isa_ok($Memd::memd, 'Cache::Memcached::Fast');
Note: See TracBrowser for help on using the repository browser.