def testDirectCallArgs(self): colors.blue("This is") if not hasattr(sys.stdout, "getvalue"): self.fail("Need to run in buffered mode!") output = sys.stdout.getvalue().strip() self.assertEquals(output, str(colors.blue | "This is"))
def testDirectCallArgs(self): colors.blue("This is") if not hasattr(sys.stdout, "getvalue"): self.fail("Need to run in buffered mode!") output = sys.stdout.getvalue().strip() self.assertEquals(output,str(colors.blue | "This is"))
def testDirectCall(self, capsys): colors.blue() assert capsys.readouterr()[0] == str(colors.blue)