Exemple #1
0
 def runfiletest(self, script, strings, expected):
     """
     Run a script on a list of strings, returns the output and expected output
     """
     sed = Sed(script, quiet=True)
     return [sed.parse(string) for string in strings], expected
Exemple #2
0
 def runfiletest(self, script, strings, expected):
     """
     Run a script on a list of strings, returns the output and expected output
     """
     sed = Sed(script, quiet=True)
     return [sed.parse(string) for string in strings], expected
Exemple #3
0
 def runtest(self, script, string, expected):
     """
     Run a script on a string, returns the output and expected ouput
     """
     sed = Sed(script, quiet=True)
     return sed.parse(string), expected
Exemple #4
0
 def runtest(self, script, string, expected):
     """
     Run a script on a string, returns the output and expected ouput
     """
     sed = Sed(script, quiet=True)
     return sed.parse(string), expected