public
Description: My mirror of phpspec
Homepage: http://www.phpspec.org/
Clone URL: git://github.com/tedkulp/phpspec.git
* Merged r187 into trunk from branches/0.2.0

git-svn-id: http://phpspec.googlecode.com/svn/trunk@188 
d6e91ea2-e33a-0410-98df-1d493bd67c58
padraic.brady (author)
Fri Jan 11 02:31:36 -0800 2008
commit  edb9006c905643eb426018283e0e801142373e7b
tree    04dedf4d3309772c483357d6dc147800702f236d
parent  17a7b8b61d3df2f15afb499d9a6928006ff66af4
...
12
13
14
15
 
16
17
18
19
20
21
 
 
 
22
23
24
...
12
13
14
 
15
16
17
18
19
 
 
20
21
22
23
24
25
0
@@ -12,13 +12,14 @@ Documentation
0
 =============
0
 
0
 Pádraic Brady (English)
0
-TAKAGI Masahiro (Japanese)
0
+Takagi Masahiro (Japanese)
0
 
0
 Bug Fixes/Patches
0
 =================
0
 
0
-KUBO Atsuhiro (3 bugs with resolving patches on 08 January 2008)
0
-TAKAGI Masahiro (manual inaccuracy patched on 08 January 2008)
0
+Harley Bussell (HTML Runner and Reporter submission)
0
+Kubo Atsuhiro (3 bugs with resolving patches on 08 January 2008)
0
+Takagi Masahiro (manual inaccuracy patched on 08 January 2008)
0
 
0
 Others
0
 ======
...
44
45
46
47
 
48
49
50
...
216
217
218
 
 
 
 
 
 
219
220
221
...
44
45
46
 
47
48
49
50
...
216
217
218
219
220
221
222
223
224
225
226
227
0
@@ -44,7 +44,7 @@ Other Targets:
0
     <property name="spec.src.default" value="${project.basedir}/.." />
0
     <property name="spec.src.classpath" value="/src" />
0
     <property name="spec.name" value="PHPSpec" />
0
- <property name="spec.version" value="0.2.1" /> <!-- VERSION FOR EDITING -->
0
+ <property name="spec.version" value="0.2.2" /> <!-- VERSION FOR EDITING -->
0
     <property name="spec.stability" value="stable" />
0
     <property name="spec.svn.baseurl" value="http://phpspec.googlecode.com/svn/" />
0
     <property name="spec.svn.url" value="${svn.url}/trunk" />
0
@@ -216,6 +216,12 @@ Other Targets:
0
                 <install as="phpspec.bat" name="scripts/phpspec.bat" />
0
             </release>
0
 
0
+ <changelog version="0.2.2" date="2008-01-11" license="LGPL">
0
+ * Patched a Predicate issue courtesy of Takagi Masahiro
0
+ and Kubo
0
+ * Added new PCRE regular expression matcher "matches()"
0
+ </changelog>
0
+
0
       <changelog version="0.2.1" date="2008-01-09" license="LGPL">
0
                 * Fixes a minor output bug missed in QA for HTML and TEXT
0
          reporters
...
122
123
124
125
 
126
127
128
...
122
123
124
 
125
126
127
128
0
@@ -122,7 +122,7 @@ class PHPSpec_Specification
0
 
0
         // check for Matcher references
0
         $matchers = array(
0
- 'equal', 'be', 'beEqualTo', 'beAnInstanceOf', 'beGreaterThan', 'beTrue', 'beFalse', 'beEmpty', 'beLessThan', 'beGreaterThanOrEqualTo', 'beLessThanOrEqualTo', 'beSet', 'beNull', 'beOfType', 'beIdenticalTo'
0
+ 'equal', 'be', 'beEqualTo', 'beAnInstanceOf', 'beGreaterThan', 'beTrue', 'beFalse', 'beEmpty', 'beLessThan', 'beGreaterThanOrEqualTo', 'beLessThanOrEqualTo', 'beSet', 'beNull', 'beOfType', 'beIdenticalTo', 'match', 'throw'
0
         );
0
         if (in_array($method, $matchers)) {
0
             $this->setExpectedValue(array_shift($args));

Comments

    No one has commented yet.