Lines Matching defs:data
24 """Module for extracting test data from the test data folder and other utils"""
36 REPLY_DATA = re.compile("<reply>[ \t\n\r]*<data[^<]*>(.*?)</data>", re.MULTILINE | re.DOTALL)
83 raise Exception("Couldn't find a <reply><data> section")
85 # Left-strip the data so we don't get a newline before our data.
90 td = TestData("./data")
91 data = td.get_test_data(1)
92 print(data)