Skip to content

Commit

Permalink
codeception 추가
Browse files Browse the repository at this point in the history
- unit test 이전
  • Loading branch information
bnu committed Apr 10, 2015
1 parent 6d093ae commit dd667fd
Show file tree
Hide file tree
Showing 32 changed files with 5,462 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ php:
- 5.6
- hhvm
before_script:
- travis_retry composer self-update
- npm install -g grunt-cli
- npm install
- if [ $(phpenv version-name) != "5.3" ]; then composer install; fi
script:
- grunt lint
- if [ $(phpenv version-name) != "5.3" ]; then ./vendor/bin/codecept run; fi
18 changes: 18 additions & 0 deletions codeception.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
helpers: tests/_support
settings:
bootstrap: _bootstrap.php
colors: true
memory_limit: 1024M
modules:
config:
Db:
dsn: ''
user: ''
password: ''
dump: tests/_data/dump.sql
error_level: "E_STRICTE_ALL & ~E_WARNING & ~E_STRICT & ~E_DEPRECATED & ~E_NOTICE"
17 changes: 17 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "xpressengine/xe-core",
"license": "GNU LGPL",
"authors": [
{
"name": "NAVER",
"email": "developers@xpressengine.com"
}
],
"require": {
},
"require-dev": {
"codeception/codeception": "~2.0",
"codeception/verify": "0.2.*",
"codeception/specify": "0.4.*"
}
}
Loading

0 comments on commit dd667fd

Please sign in to comment.