This file is indexed.

/usr/lib/python3/dist-packages/flexmock-0.10.2.egg-info is in python3-flexmock 0.10.2-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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Metadata-Version: 1.1
Name: flexmock
Version: 0.10.2
Summary: flexmock is a testing library for Python that makes it easy to create mocks,stubs and fakes.
Home-page: http://flexmock.readthedocs.org
Author: Slavek Kabrda, Herman Sheremetyev
Author-email: slavek@redhat.com
License: BSD License
Description: flexmock
        ========
        
        .. image:: https://travis-ci.org/bkabrda/flexmock.svg?branch=master
            :target: https://travis-ci.org/bkabrda/flexmock
        
        .. image:: https://coveralls.io/repos/bkabrda/flexmock/badge.svg?branch=master&service=github
            :target: https://coveralls.io/github/bkabrda/flexmock?branch=master
        
        flexmock is a testing library for Python that makes it easy to create mocks, stubs and fakes.
        ::
        
            from flexmock import flexmock
            flexmock(pirate).should_receive('drink').with_args('full bottle').and_return('empty bottle')
        
        Its API is inspired by a Ruby library of the same name. However, it is not a goal of Python flexmock to be a clone of the Ruby version. Instead, the focus is on providing full support for testing Python programs and making the creation of fake objects as unobtrusive as possible.
        
        As a result, Python flexmock removes a number of redundancies in the Ruby flexmock API, alters some defaults, and introduces a number of Python-only features.
        
        flexmock’s design focuses on simplicity and intuitivenes. This means that the API is as lean as possible, though a few convenient short-hand methods are provided to aid brevity and readability.
        
        flexmock declarations are structured to read more like English sentences than API calls, and it is possible to chain them together in any order to achieve high degree of expressiveness in a single line of code.
        
        In addition, flexmock integrates seamlessly with all major test runners to reduce even more mock-related boilerplate code.
        
        More details, including full API and user documentation, available here:
        
        https://flexmock.readthedocs.org
        
        To report bugs or file feature requests:
        
        https://github.com/bkabrda/flexmock/issues
        
Keywords: flexmock mock stub test unittest pytest nose
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: Jython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Testing