Skip to content

Commit

Permalink
Merge pull request #17 from mikedugan/master
Browse files Browse the repository at this point in the history
add codeception, update gitignore
  • Loading branch information
tobyzerner committed Dec 22, 2014
2 parents 0165199 + bf94197 commit 9365205
Show file tree
Hide file tree
Showing 19 changed files with 4,269 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/vendor
composer.phar
composer.lock
.DS_Store
Thumbs.db
public/*
public/*
tests/_output/*
17 changes: 17 additions & 0 deletions codeception.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@
"tobscure/permissible": "dev-master"
},
"require-dev": {
"fzaninotto/faker": "1.4.0"
"fzaninotto/faker": "1.4.0",
"codeception/codeception": "~2.0.0"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-4": {
"Flarum\\Core": "src/Flarum/Core",
"Flarum\\Api": "src/Flarum/Api",
"Flarum\\Web": "src/Flarum/Web"
"Flarum\\Core\\": "src/Flarum/Core",
"Flarum\\Api\\": "src/Flarum/Api",
"Flarum\\Web\\": "src/Flarum/Web"
}
},
"scripts": {
Expand Down
Loading

0 comments on commit 9365205

Please sign in to comment.