fixing links for 2.3 release, and fixing a windows32 failure on py3

This commit is contained in:
holger krekel
2012-10-19 10:53:28 +02:00
parent 586befb945
commit dca5fa2241
21 changed files with 147 additions and 1180 deletions
+3 -3
View File
@@ -88,7 +88,7 @@ the ``self.db`` values in the traceback::
$ py.test test_unittest_db.py
=========================== test session starts ============================
platform linux2 -- Python 2.7.3 -- pytest-2.3.0.dev28
platform linux2 -- Python 2.7.3 -- pytest-2.3.0
collected 2 items
test_unittest_db.py FF
@@ -101,7 +101,7 @@ the ``self.db`` values in the traceback::
def test_method1(self):
assert hasattr(self, "db")
> assert 0, self.db # fail for demo purposes
E AssertionError: <conftest.DummyDB instance at 0x26ccbd8>
E AssertionError: <conftest.DummyDB instance at 0x1276bd8>
test_unittest_db.py:9: AssertionError
___________________________ MyTest.test_method2 ____________________________
@@ -110,7 +110,7 @@ the ``self.db`` values in the traceback::
def test_method2(self):
> assert 0, self.db # fail for demo purposes
E AssertionError: <conftest.DummyDB instance at 0x26ccbd8>
E AssertionError: <conftest.DummyDB instance at 0x1276bd8>
test_unittest_db.py:12: AssertionError
========================= 2 failed in 0.02 seconds =========================