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
#!/bin/bash | |
IPATH="/Applications/iTunes.app/Contents/MacOS" | |
if [ ! -e "$IPATH/iTunesX" ] | |
then | |
sudo mv "$IPATH/iTunes" "$IPATH/iTunesX" | |
# has sudo failed? | |
if (( $? )) |
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
<?php | |
// ZF coding style guides | |
public function hydrate(ClassMetadata $metadata, $document, $data) | |
{ | |
$values = array(); | |
foreach ($metadata->fieldMappings as $mapping) { | |
if ( ! isset($data[$mapping['fieldName']])) { | |
continue; |
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
Feature: Homepage | |
Scenario: Index page | |
Given I am on homepage | |
When I go to main/index | |
Then Response status code is 200 | |
And I should see "This is a temporary page" | |
#-------------------------------------------------------------- |
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
<?php | |
require_once '/sahi/driver/path/autoload.php.dist'; | |
use Everzet\SahiDriver; | |
$connection = new SahiDriver\Connection('@@SAHI_SESSION_ID@@'); // replace with your custom session ID | |
$browser = new SahiDriver\Browser($connection); | |
$browser->navigateTo('http://shopopensky.com/'); |
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
# RSpec (aka "Best in Ruby"): | |
@account.balance.should == 12 | |
# PHPUnit (aka "Best in PHP"): | |
$this->assertEquals(12, $account->getBalance()); | |
# PHPSpec: |
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
<?php | |
$steps->Then('/^it should pass with:$/', function($world, $data) { | |
try { | |
assertEquals((string) $data, $world->output); | |
} catch (\Exception $e) { | |
$exceptionDiff = \PHPUnit_Framework_TestFailure::exceptionToString($e); | |
throw new \Exception($exceptionDiff, $e->getCode(), $e); | |
} | |
}); |
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
Feature: New Study | |
In order to create a new Study | |
As a Researcher | |
I must be able to enter information about the study and save it | |
Scenario Outline: Researcher adds new study | |
When I enter <study name> | |
And I enter <short url> | |
And I enter <welcome text> | |
And I set self registration to <self registration> |
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
<?php | |
use Symfony\Component\ResourceWatcher\ResourceWatcher, | |
Symfony\Component\ResourceWatcher\Event\Event, | |
Symfony\Component\Config\Resource\DirectoryResource, | |
Symfony\Component\Config\Resource\FileResource; | |
$watcher = new ResourceWatcher(); | |
$watcher->track(new DirectoryResource('/some/directory'), function($event) { |
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
Feature: REST API | |
In order to be able to build my own tool for web application | |
As a developer | |
I need to have clean REST API for application | |
Scenario: List all users | |
Given application has users: | |
| name | email | | |
| ivan | [email protected] | | |
| dima | [email protected] | |
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
framework: | |
test: ~ | |
behat_mink: | |
start_url: http://your_app_local.url/app_dev.php/ | |
behat: ~ |
OlderNewer