Skip to content

Instantly share code, notes, and snippets.

@MarcelloDuarte
Created May 19, 2011 21:07
Show Gist options
  • Save MarcelloDuarte/981745 to your computer and use it in GitHub Desktop.
Save MarcelloDuarte/981745 to your computer and use it in GitHub Desktop.
<?php
// how that:
class DescribeContextZend extends \PHPSpec\Context
{
function before() {
$this->controller = $this->spec(new DescribeFooController);
}
public function itShouldSetControllerNameUsingContextClass()
{
$this->controller->should->be('Foo');
}
public function itShouldCreateFrontControllerWhenInstantiated()
{
$this->controller->getFrontController()
->should->beAnInstanceOf('Zend_Controller_Front');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment