Skip to content

Commit

Permalink
tests: Remove unsupported tests of PHPSpec.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jul 13, 2022
1 parent 16b0c24 commit 607ff89
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions spec/EcPhp/CasBundle/Configuration/SymfonySpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,6 @@

class SymfonySpec extends ObjectBehavior
{
public function it_implements_array_access()
{
$this
->offsetExists('protocol')
->shouldReturn(true);
$this
->offsetGet('base_url')
->shouldReturn('http://local/cas');

$this
->offsetUnset('protocol');

$this
->offsetExists('protocol')
->shouldReturn(false);

$this
->offsetSet('base_url', 'base_url');

$this
->offsetGet('base_url')
->shouldReturn('base_url');
}

public function it_is_initializable()
{
$this->shouldHaveType(Symfony::class);
Expand Down

0 comments on commit 607ff89

Please sign in to comment.