summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2011-06-23 19:56:42 +1200
committerRobert Collins <robertc@robertcollins.net>2011-06-23 19:56:42 +1200
commit2fb7b0381ef2d6aec18cb278ab3ed3becc4d780d (patch)
tree7ee3c7221e2fd64e63ca6c101516394e53164d6b /NEWS
parent6b5695a1e5b6969ba16ad382256005c211e281c7 (diff)
downloadfixtures-2fb7b0381ef2d6aec18cb278ab3ed3becc4d780d.tar.gz
Another small API break - sorry. Fixture.getDetails no longer returns the
internal details dict (self._details). Access that directly if needed. It now looks for details in used fixtures and returns those as well as details added directly. (RobertCollins, #780806)
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index e0a17ec..54c4511 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,11 @@ fixtures release notes
IN DEVELOPMENT
~~~~~~~~~~~~~~
+Another small API break - sorry. Fixture.getDetails no longer returns the
+internal details dict (self._details). Access that directly if needed. It now
+looks for details in used fixtures and returns those as well as details added
+directly.
+
CHANGES:
* Details from child fixtures for both Fixture and TestWithFixtures no longer
@@ -13,6 +18,9 @@ CHANGES:
gather_details helper).
(Gavin Panella, #796253)
+* Fixture.getDetails will now return all the details of fixtures added using
+ useFixture. (RobertCollins, #780806)
+
* New fixture ``PackagePathEntry`` which patches the path of an existing
package, allowing importing part of it from aonther directory.
(Robert Collins)