Ejemplo n.º 1
0
    def _ignored_test_punctuation_simple(self):

        pattern = set(['aaa', '111', '333'])
        text = dumps({
            'aaa:aaa': '111---qqq',
            'bbb&&&&bbb@@@@zzz': 222,
            'ccc': '333'
        })
        self.assertTrue(match_pattern(text, pattern))
Ejemplo n.º 2
0
    def _ignored_test_punctuation_hyphens(self):

        pattern = set(['aaa', '111', '333-ggg', '111-qqq'])
        text = dumps({
            'aaa:aaa': '111-qqq',
            'bbb&&&&bbb@@@@zzz': 111,
            'ccc': '333-ggg'
        })
        self.assertTrue(match_pattern(text, pattern))
Ejemplo n.º 3
0
    def _ignored_test_xml(self):

        pattern = set(['aaa', '111', '333-ggg', '111-qqq'])
        text = """<?xml version="1.0"?>
        <aaa>
          <ggg>111</ggg>
          <qqq attr="333-ggg"/>
          <ccc>111-qqq</ccc>
        </aaa>
        """
        self.assertTrue(match_pattern(text, pattern))
Ejemplo n.º 4
0
    def _ignored_test_simple(self):

        pattern = set(['aaa', '111', '333'])
        text = dumps({'aaa': '111', 'bbb': 222, 'ccc': '333'})
        self.assertTrue(match_pattern(text, pattern))