2014-11-26 14:31:12 -06:00
|
|
|
# Codeception Test Suite Configuration
|
|
|
|
|
|
|
|
# suite for functional (integration) tests.
|
|
|
|
# emulate web requests and make application process them.
|
|
|
|
# Include one of framework modules (Symfony2, Yii2, Laravel4) to use it.
|
|
|
|
|
|
|
|
class_name: FunctionalTester
|
|
|
|
modules:
|
2014-12-06 12:47:43 -06:00
|
|
|
enabled: [Db, Filesystem, FunctionalHelper, Laravel4]
|
|
|
|
config:
|
2014-12-06 14:48:23 -06:00
|
|
|
Db:
|
|
|
|
populate: false
|
2014-12-24 12:00:31 -06:00
|
|
|
cleanup: true
|
2015-01-01 05:06:42 -06:00
|
|
|
dsn: 'sqlite:tests/_data/db.sqlite'
|
|
|
|
user: ''
|
|
|
|
password: ''
|
|
|
|
dump: tests/_data/dump.sql
|
2014-12-06 12:47:43 -06:00
|
|
|
Laravel4:
|
2014-12-07 08:37:53 -06:00
|
|
|
environment: 'testing'
|
2015-01-01 23:24:48 -06:00
|
|
|
filters: false
|