mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-22 23:56:29 +00:00
remove foo test
This commit is contained in:
parent
93fd4692f6
commit
2b9fe72b39
4 changed files with 29 additions and 39 deletions
|
@ -18,3 +18,5 @@ parameters:
|
||||||
|
|
||||||
# A secret key that's used to generate certain security-related tokens
|
# A secret key that's used to generate certain security-related tokens
|
||||||
secret: ThisTokenIsNotSoSecretChangeIt
|
secret: ThisTokenIsNotSoSecretChangeIt
|
||||||
|
|
||||||
|
download_pictures: false # if true, pictures will be stored into data/assets for each article
|
|
@ -1,26 +1,33 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<phpunit backupGlobals="false"
|
<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
|
||||||
backupStaticAttributes="false"
|
|
||||||
colors="true"
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
convertErrorsToExceptions="true"
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
|
||||||
convertNoticesToExceptions="true"
|
backupGlobals="false"
|
||||||
convertWarningsToExceptions="true"
|
colors="true"
|
||||||
processIsolation="false"
|
bootstrap="bootstrap.php.cache"
|
||||||
stopOnFailure="false"
|
|
||||||
syntaxCheck="false"
|
|
||||||
bootstrap="vendor/autoload.php"
|
|
||||||
>
|
>
|
||||||
|
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="wallabag Test Suite">
|
<testsuite name="wallabag Test Suite">
|
||||||
<directory>tests</directory>
|
<directory>../src/*/*Bundle/Tests</directory>
|
||||||
|
<directory>../src/*/Bundle/*Bundle/Tests</directory>
|
||||||
|
<directory>../src/*Bundle/Tests</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
|
|
||||||
<filter>
|
<filter>
|
||||||
<whitelist>
|
<whitelist>
|
||||||
<directory>inc</directory>
|
<directory>../src</directory>
|
||||||
|
<exclude>
|
||||||
|
<directory>../src/*Bundle/Resources</directory>
|
||||||
|
<directory>../src/*Bundle/Tests</directory>
|
||||||
|
<directory>../src/*/*Bundle/Resources</directory>
|
||||||
|
<directory>../src/*/*Bundle/Tests</directory>
|
||||||
|
<directory>../src/*/Bundle/*Bundle/Resources</directory>
|
||||||
|
<directory>../src/*/Bundle/*Bundle/Tests</directory>
|
||||||
|
</exclude>
|
||||||
</whitelist>
|
</whitelist>
|
||||||
</filter>
|
</filter>
|
||||||
|
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* wallabag, self hostable application allowing you to not miss any content anymore
|
|
||||||
*
|
|
||||||
* @category wallabag
|
|
||||||
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
|
||||||
* @copyright 2013
|
|
||||||
* @license http://opensource.org/licenses/MIT see COPYING file
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace wallabag\wallabag\Tests;
|
|
||||||
|
|
||||||
class EntryTest extends \PHPUnit_Framework_TestCase
|
|
||||||
{
|
|
||||||
public function testCreateUser()
|
|
||||||
{
|
|
||||||
$this->assertTrue(true);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -9,13 +9,13 @@ use Symfony\Component\Debug\Debug;
|
||||||
|
|
||||||
// This check prevents access to debug front controllers that are deployed by accident to production servers.
|
// This check prevents access to debug front controllers that are deployed by accident to production servers.
|
||||||
// Feel free to remove this, extend it, or make something more sophisticated.
|
// Feel free to remove this, extend it, or make something more sophisticated.
|
||||||
if (isset($_SERVER['HTTP_CLIENT_IP'])
|
//if (isset($_SERVER['HTTP_CLIENT_IP'])
|
||||||
|| isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
// || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
|
||||||
|| !(in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) || php_sapi_name() === 'cli-server')
|
// || !(in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) || php_sapi_name() === 'cli-server')
|
||||||
) {
|
//) {
|
||||||
header('HTTP/1.0 403 Forbidden');
|
// header('HTTP/1.0 403 Forbidden');
|
||||||
exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
|
// exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
|
||||||
}
|
//}
|
||||||
|
|
||||||
$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
|
$loader = require_once __DIR__.'/../app/bootstrap.php.cache';
|
||||||
Debug::enable();
|
Debug::enable();
|
||||||
|
|
Loading…
Reference in a new issue