Exemplo n.º 1
0
def test___get_question_nid__match():
    match = Mock()
    match.groups.return_value = ("56743",)
    assert _get_question_nid(match) == 56743
Exemplo n.º 2
0
def test___get_question_nid__no_match():
    assert _get_question_nid(None) is None