line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CHI::Driver::Rethinkdb::t::CHIDriverTests; |
2
|
|
|
|
|
|
|
$CHI::Driver::Rethinkdb::t::CHIDriverTests::VERSION = '0.1.2'; |
3
|
1
|
|
|
1
|
|
14965
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
22
|
|
4
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
46
|
|
5
|
1
|
|
|
1
|
|
420
|
use CHI::Test; |
|
1
|
|
|
|
|
129048
|
|
|
1
|
|
|
|
|
7
|
|
6
|
1
|
|
|
1
|
|
17756
|
use base qw(CHI::t::Driver); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
642
|
|
7
|
|
|
|
|
|
|
|
8
|
0
|
|
|
0
|
0
|
|
sub testing_driver_class { 'CHI::Driver::Rethinkdb' } |
9
|
0
|
|
|
0
|
0
|
|
sub supports_get_namespaces { 0 } |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub new_cache_options { |
12
|
0
|
|
|
0
|
0
|
|
my $self = shift; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
return ( |
15
|
|
|
|
|
|
|
$self->SUPER::new_cache_options(), |
16
|
|
|
|
|
|
|
port => $ENV{RETHINKDB_PORT} || 28015, |
17
|
0
|
|
0
|
|
|
|
host => $ENV{RETHINKDB_HOST} || 'localhost' |
|
|
|
0
|
|
|
|
|
18
|
|
|
|
|
|
|
); |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
0
|
0
|
|
sub test_multiple_processes { } |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
1; |
26
|
|
|
|
|
|
|
|