/usr/share/pyshared/axiom/test/newpath.py is in python-axiom 0.7.1-2.
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 | # -*- test-case-name: axiom.test.test_upgrading.PathUpgrade.testUpgradePath -*-
from axiom.attributes import path
from axiom.item import Item
from axiom.upgrade import registerAttributeCopyingUpgrader
class Path(Item):
schemaVersion = 2
typeName = 'test_upgrade_path'
thePath = path()
registerAttributeCopyingUpgrader(Path, 1, 2)
|