Skip to content

Instantly share code, notes, and snippets.

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"
#--------------------------------------------------------------
@everzet
everzet / symfony1VsZfCodingStyleGuides.php
Created May 12, 2010 09:29
Readability issues in ZF vs symfony 1 style guides
<?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;
#!/bin/bash
IPATH="/Applications/iTunes.app/Contents/MacOS"
if [ ! -e "$IPATH/iTunesX" ]
then
sudo mv "$IPATH/iTunes" "$IPATH/iTunesX"
# has sudo failed?
if (( $? ))