summaryrefslogtreecommitdiff
path: root/tests/plugins/basics/wrongtype/foo.py
blob: 3fe9a1a62a51f17ca8574533f46eb0919c0454e7 (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