]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
remove foo test
authorNicolas Lœuillet <nicolas@loeuillet.org>
Thu, 22 Jan 2015 09:14:37 +0000 (10:14 +0100)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Thu, 22 Jan 2015 09:14:37 +0000 (10:14 +0100)
app/config/parameters.yml.dist
phpunit.xml.dist
tests/Wallabag/Wallabag/Tests/EntryTest.php [deleted file]
web/app_dev.php

index 1da778f4127fdc486315ffbf81f0dea65e3dcf81..26a23f54079d4c4895cdf09dba126c2f04ba7df0 100644 (file)
@@ -18,3 +18,5 @@ parameters:
 
     # A secret key that's used to generate certain security-related tokens
     secret:            ThisTokenIsNotSoSecretChangeIt
+
+    download_pictures: false # if true, pictures will be stored into data/assets for each article
\ No newline at end of file
index cede1ceae275d95df9e206064dcfdd341b325a79..19c1ece3fe218588b7df74d1ca053833125e91b3 100644 (file)
@@ -1,27 +1,34 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
-    <phpunit backupGlobals="false"
-         backupStaticAttributes="false"
-         colors="true"
-         convertErrorsToExceptions="true"
-         convertNoticesToExceptions="true"
-         convertWarningsToExceptions="true"
-         processIsolation="false"
-         stopOnFailure="false"
-         syntaxCheck="false"
-         bootstrap="vendor/autoload.php"
+<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
+
+<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
+                backupGlobals="false"
+                colors="true"
+                bootstrap="bootstrap.php.cache"
                >
 
        <testsuites>
                <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>
        </testsuites>
 
        <filter>
                <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>
        </filter>
 
-</phpunit>
+</phpunit>
\ No newline at end of file
diff --git a/tests/Wallabag/Wallabag/Tests/EntryTest.php b/tests/Wallabag/Wallabag/Tests/EntryTest.php
deleted file mode 100644 (file)
index dfff9fd..0000000
+++ /dev/null
@@ -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);
-    }
-}
index e0279c2aebf4bf7086379f5606f47e2f2c3eb61a..d3e3b473d2e7ec0deea3722a963bbe14299dc18d 100644 (file)
@@ -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.
 // Feel free to remove this, extend it, or make something more sophisticated.
-if (isset($_SERVER['HTTP_CLIENT_IP'])
-    || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
-    || !(in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) || php_sapi_name() === 'cli-server')
-) {
-    header('HTTP/1.0 403 Forbidden');
-    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
-}
+//if (isset($_SERVER['HTTP_CLIENT_IP'])
+//    || isset($_SERVER['HTTP_X_FORWARDED_FOR'])
+//    || !(in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', 'fe80::1', '::1')) || php_sapi_name() === 'cli-server')
+//) {
+//    header('HTTP/1.0 403 Forbidden');
+//    exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
+//}
 
 $loader = require_once __DIR__.'/../app/bootstrap.php.cache';
 Debug::enable();