GitHub - MarkMaldaba/Behationary: Human readable/searchable step dictionary for behat contexts.

Skip to content

Navigation Menu

Sign in

Appearance settings

Behationary

Human readable/searchable step dictionary for behat contexts.

Requirements

  • php >= 5.3
  • Composer

Installation

  1. Clone this repo
  2. Run "composer update" in the root.
  3. Point your webserver at the www subfolder.
  4. Ensure any file requests with api/ at the start is forwarded to api.php (this is done already for apache with .htaccess)
  5. In the repo root create config.php (this will be loaded automatically) with something like the following:
<?php
namespace Behationary;

// todo: Include context files.

function getContexts() {
 // todo: Add all the feature contexts to this array
  return array(
		new \FeatureContext(array()),
		"AnotherFeatureContext"
	);
}

Languages

  • PHP 43.5%
  • ApacheConf 36.5%
  • CSS 9.2%
  • HTML 6.6%
  • JavaScript 4.2%