11 lines
No EOL
336 B
Text
11 lines
No EOL
336 B
Text
<?php
|
|
// This is global bootstrap for autoloading
|
|
use Codeception\Util\Fixtures;
|
|
|
|
Fixtures::add('url', 'http://ninja.dev');
|
|
Fixtures::add('username', 'user@example.com');
|
|
Fixtures::add('password', 'password');
|
|
|
|
Fixtures::add('api_secret', 'password');
|
|
Fixtures::add('stripe_secret_key', '');
|
|
Fixtures::add('stripe_publishable_key', ''); |