Skip to content

Commit

Permalink
Merge pull request #204 from FriendsOfSymfony/symfony-process-dep
Browse files Browse the repository at this point in the history
Note that symfony/process is a requirement for running tests
  • Loading branch information
dbu committed Jun 1, 2015
2 parents 8332e2e + 284476d commit 4b6599f
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions doc/testing-your-application.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,14 @@ Configuration
'''''''''''''

By default, the ``VarnishTestCase`` starts and stops a Varnish server for you.
All you have to do is to set your Varnish configuration (VCL) file.
Make sure ``symfony/process`` is available in your project:

.. code-block:: bash
$ composer require symfony/process
Then set your Varnish configuration (VCL) file. All available configuration
parameters are shown below.

======================= ========================= ================================================== ============================================
Constant Getter Default Description
Expand All @@ -84,10 +91,16 @@ NginxTestCase
Configuration
'''''''''''''

By default, the ``NginxTestCase`` starts and stops NGINX server for you and deletes
all cached contents. You have to set your NGINX configuration file.
By default, the ``NginxTestCase`` starts and stops the NGINX server for you and
deletes all cached contents. Make sure ``symfony/process`` is available in your
project:

.. code-block:: bash
$ composer require symfony/process
These are all the configurations you can change
You have to set your NGINX configuration file. All available configuration
parameters are shown below.

======================= ========================= ================================================ ==========================================
Constant Getter Default Description
Expand Down

0 comments on commit 4b6599f

Please sign in to comment.