File tree Expand file tree Collapse file tree 7 files changed +30
-2
lines changed Expand file tree Collapse file tree 7 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ branches:
2222 - /^analysis-.*$/
2323
2424matrix :
25- allow_failures :
26- - php : hhvm
2725 fast_finish : true
2826 include :
2927 - php : 5.4
Original file line number Diff line number Diff line change 33namespace spec \Http \Message \Encoding ;
44
55use Psr \Http \Message \StreamInterface ;
6+ use PhpSpec \Exception \Example \SkippingException ;
67use PhpSpec \ObjectBehavior ;
78
89class ChunkStreamSpec extends ObjectBehavior
910{
1011 function let (StreamInterface $ stream )
1112 {
13+ if (defined ('HHVM_VERSION ' )) {
14+ throw new SkippingException ('Skipping test as there is no dechunk filter on hhvm ' );
15+ }
16+
1217 $ this ->beConstructedWith ($ stream );
1318 }
1419
Original file line number Diff line number Diff line change 33namespace spec \Http \Message \Encoding ;
44
55use Psr \Http \Message \StreamInterface ;
6+ use PhpSpec \Exception \Example \SkippingException ;
67use PhpSpec \ObjectBehavior ;
78
89class CompressStreamSpec extends ObjectBehavior
910{
1011 function let (StreamInterface $ stream )
1112 {
13+ if (defined ('HHVM_VERSION ' )) {
14+ throw new SkippingException ('Skipping test as zlib is not working on hhvm ' );
15+ }
16+
1217 $ this ->beConstructedWith ($ stream );
1318 }
1419
Original file line number Diff line number Diff line change 33namespace spec \Http \Message \Encoding ;
44
55use Psr \Http \Message \StreamInterface ;
6+ use PhpSpec \Exception \Example \SkippingException ;
67use PhpSpec \ObjectBehavior ;
78
89class DechunkStreamSpec extends ObjectBehavior
910{
1011 function let (StreamInterface $ stream )
1112 {
13+ if (defined ('HHVM_VERSION ' )) {
14+ throw new SkippingException ('Skipping test as there is no dechunk filter on hhvm ' );
15+ }
16+
1217 $ this ->beConstructedWith ($ stream );
1318 }
1419
Original file line number Diff line number Diff line change 33namespace spec \Http \Message \Encoding ;
44
55use Psr \Http \Message \StreamInterface ;
6+ use PhpSpec \Exception \Example \SkippingException ;
67use PhpSpec \ObjectBehavior ;
78
89class DecompressStreamSpec extends ObjectBehavior
910{
1011 function let (StreamInterface $ stream )
1112 {
13+ if (defined ('HHVM_VERSION ' )) {
14+ throw new SkippingException ('Skipping test as zlib is not working on hhvm ' );
15+ }
16+
1217 $ this ->beConstructedWith ($ stream );
1318 }
1419
Original file line number Diff line number Diff line change 33namespace spec \Http \Message \Encoding ;
44
55use Psr \Http \Message \StreamInterface ;
6+ use PhpSpec \Exception \Example \SkippingException ;
67use PhpSpec \ObjectBehavior ;
78
89class GzipDecodeStreamSpec extends ObjectBehavior
910{
1011 function let (StreamInterface $ stream )
1112 {
13+ if (defined ('HHVM_VERSION ' )) {
14+ throw new SkippingException ('Skipping test as zlib is not working on hhvm ' );
15+ }
16+
1217 $ this ->beConstructedWith ($ stream );
1318 }
1419
Original file line number Diff line number Diff line change 33namespace spec \Http \Message \Encoding ;
44
55use Psr \Http \Message \StreamInterface ;
6+ use PhpSpec \Exception \Example \SkippingException ;
67use PhpSpec \ObjectBehavior ;
78
89class GzipEncodeStreamSpec extends ObjectBehavior
910{
1011 function let (StreamInterface $ stream )
1112 {
13+ if (defined ('HHVM_VERSION ' )) {
14+ throw new SkippingException ('Skipping test as zlib is not working on hhvm ' );
15+ }
16+
1217 $ this ->beConstructedWith ($ stream );
1318 }
1419
You can’t perform that action at this time.
0 commit comments