-
- Downloads
get integration tests working with Caldera Forms
Showing
- .gitignore 2 additions, 1 deletion.gitignore
- Tests/Integration/IntegrationTestCase.php 1 addition, 1 deletionTests/Integration/IntegrationTestCase.php
- Tests/Integration/RestAPITestCase.php 1 addition, 1 deletionTests/Integration/RestAPITestCase.php
- Tests/Integration/RestRequestTest.php 0 additions, 61 deletionsTests/Integration/RestRequestTest.php
- Tests/Integration/TestsTest.php 24 additions, 0 deletionsTests/Integration/TestsTest.php
- Tests/Mock/.gitkeep 1 addition, 0 deletionsTests/Mock/.gitkeep
- Tests/Mock/wpdb.php 3 additions, 0 deletionsTests/Mock/wpdb.php
- Tests/bootstrap-integration.php 2 additions, 1 deletionTests/bootstrap-integration.php
- Tests/bootstrap.php 3 additions, 2 deletionsTests/bootstrap.php
- Tests/plugins/.gitkeep 1 addition, 0 deletionsTests/plugins/.gitkeep
- Tests/plugins/caldera-forms 1 addition, 0 deletionsTests/plugins/caldera-forms
- caldera-forms-query.php 0 additions, 14 deletionscaldera-forms-query.php
- composer.json 15 additions, 5 deletionscomposer.json
- composer.lock 152 additions, 2 deletionscomposer.lock
Tests/Integration/TestsTest.php
0 → 100644
Tests/plugins/.gitkeep
0 → 100644
... | @@ -9,6 +9,12 @@ | ... | @@ -9,6 +9,12 @@ |
"email": "josh@calderawp.com" | "email": "josh@calderawp.com" | ||
} | } | ||
], | ], | ||
"repositories" : [ | |||
{ | |||
"type": "git", | |||
"url" : "git@github.com:CalderaWP/Caldera-Forms.git" | |||
} | |||
], | |||
"require": { | "require": { | ||
"php": ">=5.6", | "php": ">=5.6", | ||
"nilportugues/sql-query-builder": "^1.5" | "nilportugues/sql-query-builder": "^1.5" | ||
... | @@ -33,15 +39,19 @@ | ... | @@ -33,15 +39,19 @@ |
"psr-4": { | "psr-4": { | ||
"calderawp\\CalderaFormsQuery\\Tests\\": "Tests/" | "calderawp\\CalderaFormsQuery\\Tests\\": "Tests/" | ||
}, | } | ||
"files" : [ | |||
"./Tests/Mock/wpdb.php" | |||
] | |||
}, | }, | ||
"require-dev": { | "require-dev": { | ||
"php": "^7.1", | "php": "^7.1", | ||
"phpunit/phpunit": "^7.0", | "phpunit/phpunit": "^7.0", | ||
"squizlabs/php_codesniffer": "^3.2", | "squizlabs/php_codesniffer": "^3.2", | ||
"jakub-onderka/php-parallel-lint": "^1.0" | "jakub-onderka/php-parallel-lint": "^1.0", | ||
"Desertsnowman/caldera-forms": "dev-develop", | |||
"composer/installers": "~1.0" | |||
}, | |||
"extra" : { | |||
"installer-paths" : { | |||
"Tests/plugins/{$name}/" : ["type:wordpress-plugin"] | |||
} | |||
} | } | ||
} | } |
Please register or sign in to comment