Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 699 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 699 Bytes

Codeception OpenMVC Module

This module will let you run functional tests against your OpenMVC app.

Installation

Add the package into your composer.json:

{
  "require-dev": {
    "codeception/codeception": "*",
    "openmvc/codeception-openmvc-module": "dev-master"
  }
}

Tell Composer to download the package:

php composer.phar update

Then enable it in your functional.suite.yml configuration (default values are shown below):

class_name: TestGuy
modules:
  enabled:
    - OpenMVC
  config:
    OpenMVC:
      locale: 'en'
      index: 'public_html/index.php'

License

Released under the same liceces as Codeception: MIT