示例#1
0
    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"))
示例#2
0
    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"))
示例#3
0
 def testDirectCall(self, capsys):
     colors.blue()
     assert capsys.readouterr()[0] == str(colors.blue)
示例#4
0
 def testDirectCall(self, capsys):
     colors.blue()
     assert capsys.readouterr()[0] == str(colors.blue)