예제 #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)