File: 000-use.t

package info (click to toggle)
libdr-tarantool-perl 0.15-1%2Bdeb70u1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 308 kB
  • sloc: perl: 2,901; makefile: 21
file content (31 lines) | stat: -rw-r--r-- 777 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/perl

use warnings;
use strict;
use utf8;
use open qw(:std :utf8);
use lib qw(lib ../lib);
use lib qw(blib/lib blib/arch ../blib/lib ../blib/arch);

use Test::More tests    => 10;
use Encode qw(decode encode);


BEGIN {
    my $builder = Test::More->builder;
    binmode $builder->output,         ":utf8";
    binmode $builder->failure_output, ":utf8";
    binmode $builder->todo_output,    ":utf8";


    use_ok 'DR::Tarantool';
    use_ok 'DR::Tarantool';
    use_ok 'DR::Tarantool', ':all';
    use_ok 'DR::Tarantool', ':constant';
    use_ok 'DR::Tarantool::AsyncClient';
    use_ok 'DR::Tarantool::LLClient';
    use_ok 'DR::Tarantool::Spaces';
    use_ok 'DR::Tarantool::StartTest';
    use_ok 'DR::Tarantool::SyncClient';
    use_ok 'DR::Tarantool::Tuple';
}