summaryrefslogtreecommitdiffstatshomepage
path: root/tests/plugins/test_plugins.py
blob: dd7042ea7347b0463e36ca0e337dbb2a4fc628c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
import hircine.plugins


def test_plugin_transformer_decorator(empty_plugins):
    @hircine.plugins.transformer
    def ignore(generator, info):
        return

    assert hircine.plugins.transformers == [ignore]