summaryrefslogtreecommitdiffstats
path: root/tests/meta_hooks/identity_test.py
blob: 3eff00be39ff7099386e29590602c785a9ab7f1a (plain)
1
2
3
4
5
6
from pre_commit.meta_hooks import identity


def test_identity(cap_out):
    assert not identity.main(('a', 'b', 'c'))
    assert cap_out.get() == 'a\nb\nc\n'