summaryrefslogtreecommitdiffhomepage
path: root/test/unit/check/regex.py
blob: 51cf966b7aa5845105397360ca8db10987339636 (plain) (blame)
1
2
3
4
5
6
7
8
import re


def check_regex(output_version):
    if re.search('--no-regex', output_version):
        return False

    return True