This file is indexed.

/usr/share/perl5/Test/Attean/ETagCacheableQuadStore.pm is in libattean-perl 0.017-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
package Test::Attean::ETagCacheableQuadStore;

use v5.14;
use warnings;
use Test::Roo::Role;
use Test::Moose;
use Attean;
use Attean::RDF;

requires 'create_store';       # create_store( quads => \@quads )
with 'Test::Attean::StoreCleanup';

test 'etagcacheablequadstore' => sub {
    my $self	= shift;
    my $time	= time();
    my $store	= $self->create_store(quads => []);
    my $etag	= $store->etag_value_for_quads();
    ok(length($etag));
	$self->cleanup_store($store);
};

1;