Last active
December 15, 2015 05:39
-
-
Save rjmackay/5210622 to your computer and use it in GitHub Desktop.
Revisions
-
rjmackay revised this gist
Mar 21, 2013 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ <?php defined('SYSPATH') OR die('No direct script access.'); /** * Initial core ushahidi structure */ -
rjmackay revised this gist
Mar 21, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ <?php /** * Initial core ushahidi structure */ -
rjmackay revised this gist
Mar 21, 2013 . 1 changed file with 13 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ /** * Initial core ushahidi structure */ class Migration_3_0_20130320172622 extends Minion_Migration_Base { /** * Run queries needed to apply this migration * * @param Kohana_Database $db Database connection */ public function up(Kohana_Database $db) { ... -
rjmackay created this gist
Mar 21, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ Scenario: Listing All Forms Given that I want to get all "Forms" When I request "/forms" Then the response is JSON And the response has a "count" property And the type of the "count" property is numeric Then the response status code should be 200