Skip to content

Commit 92636b9

Browse files
committed
Adding Codeception
1 parent 011916c commit 92636b9

22 files changed

+3614
-40
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,7 @@
3434
/public/sitemap.gz
3535
/public/sitemap.tar.gz
3636
/public/.htaccess
37+
38+
/vendor/
39+
40+
tests/_output/*

codeception.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
actor: Tester
2+
paths:
3+
tests: tests
4+
log: tests/_output
5+
data: tests/_data
6+
helpers: tests/_support
7+
settings:
8+
bootstrap: _bootstrap.php
9+
colors: true
10+
memory_limit: 1024M
11+
modules:
12+
config:
13+
Db:
14+
dsn: ''
15+
user: ''
16+
password: ''
17+
dump: tests/_data/dump.sql

composer.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "delboy1978uk/mpos",
3+
"description": "MPOS stands for Mining Portal Open Source. A unified mining interface for various Scrypt and SHA256d Crypto-currencies!",
4+
"require-dev": {
5+
"codeception/codeception": "~2.0"
6+
},
7+
"authors": [
8+
{
9+
"name": "Derek Stephen McLean",
10+
"email": "delboy1978uk@gmail.com"
11+
}
12+
],
13+
"require": {}
14+
}

0 commit comments

Comments
 (0)