summaryrefslogtreecommitdiff
path: root/tests/internals/pluginfactory/wrongtype/foo.py
blob: 37d9f6bfe98b87016eedf707a4ddd9438a5db09b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Plugins are supposed to return a subclass type
# of Source or Element, depending on plugin type.
#
# This one fails the requirement


class Foo:
    pass


def setup():
    return Foo