Michael Foord wrote:
On 3 Aug 2011, at 22:58, Ethan Furman wrote:
Michael Foord wrote:
On 3 Aug 2011, at 21:36, Ethan Furman wrote:
My apologies for posting here first, but I'm not yet confident enough in my bug
searching fu, and duplicates are a pain.
Here's the issue:
from unittest import
On 3 Aug 2011, at 22:58, Ethan Furman wrote:
> Michael Foord wrote:
>> On 3 Aug 2011, at 21:36, Ethan Furman wrote:
>>> My apologies for posting here first, but I'm not yet confident enough in my
>>> bug searching fu, and duplicates are a pain.
>>>
>>> Here's the issue:
>>>
>>> from unittest imp
Michael Foord wrote:
On 3 Aug 2011, at 21:36, Ethan Furman wrote:
My apologies for posting here first, but I'm not yet confident enough in my bug
searching fu, and duplicates are a pain.
Here's the issue:
from unittest import *
That's the bug right there. Just import TestCase and main and e
On 3 Aug 2011, at 21:36, Ethan Furman wrote:
> My apologies for posting here first, but I'm not yet confident enough in my
> bug searching fu, and duplicates are a pain.
>
> Here's the issue:
>
> from unittest import *
That's the bug right there. Just import TestCase and main and everything sh
My apologies for posting here first, but I'm not yet confident enough in
my bug searching fu, and duplicates are a pain.
Here's the issue:
from unittest import *
class MyTest(TestCase):
def test_add(self):
self.assertEqual(1,(2-1),"Sample Subraction Test")
if __name__ == '__main__