blob: fde58906b78d7faf49fa7ee7139b0cef0efc7ca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
"""Module that is off sys.path by default, for testing local-plugin-paths."""
class ExtensionTestPlugin2:
"""Extension test plugin in its own directory."""
name = "ExtensionTestPlugin2"
version = "1.0.0"
def __init__(self, tree):
"""Construct an instance of test plugin."""
def run(self):
"""Do nothing."""
|