This file is indexed.

/usr/share/pyshared/stevedore/tests/test_example_simple.py is in python-stevedore 0.14.1-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
"""Tests for stevedore.exmaple.simple
"""

from stevedore.example import simple


def test_simple_items():
    f = simple.Simple(100)
    text = ''.join(f.format({'a': 'A', 'b': 'B'}))
    expected = '\n'.join([
        'a = A',
        'b = B',
        '',
    ])
    assert text == expected