This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/zendframework/zf2 into cach…
…e_beta2 Conflicts: library/Zend/Cache/Cache.php
- Loading branch information
40 parents
515476d
+
26e6cb2
+
0772403
+
e0b6d8c
+
4620d34
+
128c4da
+
92f5c68
+
c7d790d
+
2549b87
+
47be447
+
b60e5b4
+
328746d
+
29a4a76
+
ef5ed67
+
76e4ea4
+
70330aa
+
10f278f
+
252fdc8
+
023de10
+
85fcc7b
+
5d8866f
+
634bb62
+
453bb28
+
c8dba7b
+
f7017f6
+
6979e44
+
d1673d5
+
5a530d5
+
c10ba52
+
eb5e8ac
+
1377bc0
+
f548f30
+
e9e4fec
+
367be36
+
bcbdf6c
+
da3d16c
+
d997a89
+
22ab842
+
82c6dd5
+
da76193
commit 35405a2
Showing
5 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
/** | ||
* @namespace | ||
*/ | ||
namespace ZendTest\Http; | ||
|
||
use Zend\Http\Client; | ||
|
||
class ClientTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
public function testClientRetrievesUppercaseHttpMethodFromRequestObject() | ||
{ | ||
$client = new Client; | ||
$client->setMethod('post'); | ||
$this->assertEquals(Client::ENC_URLENCODED, $client->getEncType()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters