Exemple #1
0
def main(name, test_spec):
    c = DtfPaired(name, test_spec)
    c.required_keys(['file1', 'file0', 'type', 'name'])
    c.run()

    results.extend(name, 'passing', c.passing())
def main(name, test_spec):
    c = DtfDirectoryPaired(name, test_spec)
    c.required_keys(['directory', 'file', 'count', 'type', 'name'])
    c.run()

    results.extend(name, 'passing', c.passing())
Exemple #3
0
def main(name, test_spec):
    c = DtfChange(name, test_spec)
    c.required_keys(['file', 'hash', 'type', 'name'])
    c.run()

    results.extend(name, 'passing', c.passing())