This file is indexed.

/usr/share/pyshared/fudge-1.0.3.egg-info/PKG-INFO is in python-fudge 1.0.3-3.

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
Metadata-Version: 1.1
Name: fudge
Version: 1.0.3
Summary: Replace real objects with fakes (mocks, stubs, etc) while testing.
Home-page: http://farmdev.com/projects/fudge/
Author: Kumar McMillan
Author-email: kumar.mcmillan@gmail.com
License: The MIT License
Description: 
        Complete documentation is available at http://farmdev.com/projects/fudge/
        
        Fudge is a Python module for using fake objects (mocks and stubs) to test real ones.
        
        In readable Python code, you declare what methods are available on your fake and
        how they should be called. Then you inject that into your application and start
        testing. This declarative approach means you don't have to record and playback
        actions and you don't have to inspect your fakes after running code. If the fake
        object was used incorrectly then you'll see an informative exception message
        with a traceback that points to the culprit.
        
        Here is a quick preview of how you can test code that sends
        email without actually sending email::
            
            @fudge.patch('smtplib.SMTP')
            def test_mailer(FakeSMTP):
                # Declare how the SMTP class should be used:
                (FakeSMTP.expects_call()
                         .expects('connect')
                         .expects('sendmail').with_arg_count(3))
                # Run production code:
                send_mail()
                # ...expectations are verified automatically at the end of the test
            
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Software Development :: Testing