Merge lp:~jml/testtools/expose-dir-contains into lp:~testtools-committers/testtools/trunk

Proposed by Jonathan Lange
Status: Merged
Approved by: Jonathan Lange
Approved revision: not available
Merged at revision: 288
Proposed branch: lp:~jml/testtools/expose-dir-contains
Merge into: lp:~testtools-committers/testtools/trunk
Diff against target: 50 lines (+13/-1)
3 files modified
NEWS (+10/-0)
testtools/__init__.py (+1/-1)
testtools/matchers/__init__.py (+2/-0)
To merge this branch: bzr merge lp:~jml/testtools/expose-dir-contains
Reviewer Review Type Date Requested Status
testtools committers Pending
Review via email: mp+131422@code.launchpad.net

Commit message

Re-expose DirContains

Description of the change

Oops

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'NEWS'
2--- NEWS 2012-10-25 13:46:40 +0000
3+++ NEWS 2012-10-25 14:22:18 +0000
4@@ -3,6 +3,16 @@
5
6 Changes and improvements to testtools_, grouped by release.
7
8+NEXT
9+~~~~
10+
11+Improvements
12+------------
13+
14+* ``DirContains`` correctly exposed, after being accidentally hidden in the
15+ great matcher re-organization of 0.9.17. (Jonathan Lange)
16+
17+
18 0.9.20
19 ~~~~~~
20
21
22=== modified file 'testtools/__init__.py'
23--- testtools/__init__.py 2012-10-25 13:46:40 +0000
24+++ testtools/__init__.py 2012-10-25 14:22:18 +0000
25@@ -86,4 +86,4 @@
26 # If the releaselevel is 'final', then the tarball will be major.minor.micro.
27 # Otherwise it is major.minor.micro~$(revno).
28
29-__version__ = (0, 9, 20, 'final', 0)
30+__version__ = (0, 9, 21, 'dev', 0)
31
32=== modified file 'testtools/matchers/__init__.py'
33--- testtools/matchers/__init__.py 2012-10-25 13:38:18 +0000
34+++ testtools/matchers/__init__.py 2012-10-25 14:22:18 +0000
35@@ -20,6 +20,7 @@
36 'ContainsAll',
37 'ContainedByDict',
38 'ContainsDict',
39+ 'DirContains',
40 'DirExists',
41 'DocTestMatches',
42 'EndsWith',
43@@ -84,6 +85,7 @@
44 raises,
45 )
46 from ._filesystem import (
47+ DirContains,
48 DirExists,
49 FileContains,
50 FileExists,

Subscribers

People subscribed via source and target branches