Skip to content

Commit 935faec

Browse files
committed
auto updated documentation
1 parent 2f949df commit 935faec

33 files changed

+876
-88
lines changed

_includes/modules.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<li><a href="/docs/modules/AMQP">AMQP</a></li><li><a href="/docs/modules/PhpBrowser">PhpBrowser</a></li><li><a href="/docs/modules/Asserts">Asserts</a></li><li><a href="/docs/modules/REST">REST</a></li><li><a href="/docs/modules/Cli">Cli</a></li><li><a href="/docs/modules/Redis">Redis</a></li><li><a href="/docs/modules/Db">Db</a></li><li><a href="/docs/modules/SOAP">SOAP</a></li><li><a href="/docs/modules/Dbh">Dbh</a></li><li><a href="/docs/modules/Sequence">Sequence</a></li><li><a href="/docs/modules/Doctrine1">Doctrine1</a></li><li><a href="/docs/modules/Silex">Silex</a></li><li><a href="/docs/modules/Doctrine2">Doctrine2</a></li><li><a href="/docs/modules/Symfony1">Symfony1</a></li><li><a href="/docs/modules/FTP">FTP</a></li><li><a href="/docs/modules/Symfony2">Symfony2</a></li><li><a href="/docs/modules/Facebook">Facebook</a></li><li><a href="/docs/modules/WebDriver">WebDriver</a></li><li><a href="/docs/modules/Filesystem">Filesystem</a></li><li><a href="/docs/modules/XMLRPC">XMLRPC</a></li><li><a href="/docs/modules/Kohana">Kohana</a></li><li><a href="/docs/modules/Yii1">Yii1</a></li><li><a href="/docs/modules/Laravel4">Laravel4</a></li><li><a href="/docs/modules/Yii2">Yii2</a></li><li><a href="/docs/modules/Memcache">Memcache</a></li><li><a href="/docs/modules/ZF1">ZF1</a></li><li><a href="/docs/modules/MongoDb">MongoDb</a></li><li><a href="/docs/modules/ZF2">ZF2</a></li><li><a href="/docs/modules/Phalcon1">Phalcon1</a></li>
1+
<li><a href="/docs/modules/AMQP">AMQP</a></li><li><a href="/docs/modules/PhpBrowser">PhpBrowser</a></li><li><a href="/docs/modules/Asserts">Asserts</a></li><li><a href="/docs/modules/Queue">Queue</a></li><li><a href="/docs/modules/Cli">Cli</a></li><li><a href="/docs/modules/REST">REST</a></li><li><a href="/docs/modules/Db">Db</a></li><li><a href="/docs/modules/Redis">Redis</a></li><li><a href="/docs/modules/Dbh">Dbh</a></li><li><a href="/docs/modules/SOAP">SOAP</a></li><li><a href="/docs/modules/Doctrine1">Doctrine1</a></li><li><a href="/docs/modules/Sequence">Sequence</a></li><li><a href="/docs/modules/Doctrine2">Doctrine2</a></li><li><a href="/docs/modules/Silex">Silex</a></li><li><a href="/docs/modules/FTP">FTP</a></li><li><a href="/docs/modules/Symfony1">Symfony1</a></li><li><a href="/docs/modules/Facebook">Facebook</a></li><li><a href="/docs/modules/Symfony2">Symfony2</a></li><li><a href="/docs/modules/Filesystem">Filesystem</a></li><li><a href="/docs/modules/WebDriver">WebDriver</a></li><li><a href="/docs/modules/Kohana">Kohana</a></li><li><a href="/docs/modules/XMLRPC">XMLRPC</a></li><li><a href="/docs/modules/Laravel4">Laravel4</a></li><li><a href="/docs/modules/Yii1">Yii1</a></li><li><a href="/docs/modules/Memcache">Memcache</a></li><li><a href="/docs/modules/Yii2">Yii2</a></li><li><a href="/docs/modules/MongoDb">MongoDb</a></li><li><a href="/docs/modules/ZF1">ZF1</a></li><li><a href="/docs/modules/Phalcon1">Phalcon1</a></li><li><a href="/docs/modules/ZF2">ZF2</a></li>

docs/modules/AMQP.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ To use this module with Composer you need <em>"videlalvaro/php-amqplib": "*"</em
9595

9696

9797

98+
99+
100+
101+
98102

99103

100104

docs/modules/Asserts.md

Lines changed: 31 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,46 @@ Checks that condition is negative.
6969
* `param string` $message
7070

7171

72-
#### assertGreaterThen
72+
#### assertGreaterThan
7373

74-
Checks that expected is greater then actual
74+
Checks that expected is greater than actual
7575

7676
* `param` $expected
7777
* `param` $actual
7878
* `param string` $message
7979

8080

81+
#### assertGreaterThanOrEqual
82+
83+
Checks that expected is greater or equal than actual
84+
85+
* `param` $expected
86+
* `param` $actual
87+
* `param string` $message
88+
89+
90+
#### assertGreaterThen
91+
92+
@deprecated
93+
94+
8195
#### assertGreaterThenOrEqual
8296

83-
Checks that expected is greater or equal then actual
97+
@deprecated
98+
99+
100+
#### assertLessThan
101+
102+
Checks that expected is less than actual
103+
104+
* `param` $expected
105+
* `param` $actual
106+
* `param string` $message
107+
108+
109+
#### assertLessThanOrEqual
110+
111+
Checks that expected is less or equal than actual
84112

85113
* `param` $expected
86114
* `param` $actual

docs/modules/Cli.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ Wrapper for basic shell commands and shell output
5353

5454

5555

56+
57+
58+
59+
5660

5761

5862

docs/modules/Db.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ Check out drivers if you get problems loading dumps and cleaning databases.
115115

116116

117117

118+
119+
120+
121+
118122

119123

120124

docs/modules/Dbh.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@ This module despite of it's stability may act unstable because of transactions i
8888

8989

9090

91+
92+
93+
94+
9195

9296

9397

docs/modules/Doctrine1.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ This module cleans all cached data after each test.
5959

6060

6161

62+
63+
64+
65+
6266

6367

6468

docs/modules/Doctrine2.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ It can be done in bootstrap file, by setting static $em property:
8080
8181
8282
83+
84+
85+
86+
8387
8488
8589

docs/modules/FTP.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,10 @@ Enters a directory on the ftp system - FTP root directory is used by default
153153

154154

155155

156+
157+
158+
159+
156160

157161

158162
#### cleanDir
@@ -426,7 +430,7 @@ $I->renameFile('composer.lock', 'composer_old.lock');
426430
#### seeFileContentsEqual
427431

428432
Checks the strict matching of file contents.
429-
Unlike `seeInThisFile` will fail if file has something more then expected lines.
433+
Unlike `seeInThisFile` will fail if file has something more than expected lines.
430434
Better to use with HEREDOC strings.
431435
Matching is done after removing "\r" chars from file content.
432436

docs/modules/Facebook.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,10 @@ $I->see('Welcome, ' . $fbUserFirstName);
122122

123123

124124

125+
126+
127+
128+
125129

126130

127131

0 commit comments

Comments
 (0)