Skip to content

Commit

Permalink
Merge pull request Behat#103 from ifdattic/patch-4
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
stof committed Apr 11, 2016
2 parents 2c056d0 + aa6627d commit 8fce87e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions guides/6.profiles.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@ Global Filters
While it is possible to specify filters as part of suite configuration, sometimes you will want to
exclude certain scenarios across the suite, with the option to override the filters at the command line.

This is achieved by specifying the filter in the gherkin configuration:
This is achieved by specifying the filter in the `gherkin` configuration:

.. code-block:: yaml
# behat.yml
default:
gherkin:
filters:
tags: ~@wip
filters:
tags: ~@wip
In this instance, scenarios tagged as @wip will be ignored unless the CLI command is run with a custom filter, e.g.:
In this instance, scenarios tagged as `@wip` will be ignored unless the CLI command is run with a custom filter, e.g.:

.. code-block:: bash
Expand All @@ -91,7 +91,7 @@ you want to autoload via ``behat.yml``:
autoload:
'': %paths.base%/app/features/bootstrap
If you wish to namespace your features (for example: to be PSR-1 complaint) you will need to add the namespace to the classes and also tell behat where to load them. Here ``contexts`` is an array of classes:
If you wish to namespace your features (for example: to be PSR-1 compliant) you will need to add the namespace to the classes and also tell behat where to load them. Here ``contexts`` is an array of classes:

.. code-block:: yaml
Expand All @@ -107,7 +107,7 @@ If you wish to namespace your features (for example: to be PSR-1 complaint) you
.. note::

Using ``behat.yml`` to autoload will only allow for ``PSR-0``
Using ``behat.yml`` to autoload will only allow for ``PSR-0``.
You can also use ``composer.json`` to autoload, which will also
allow for ``PSR-4``

Expand Down

0 comments on commit 8fce87e

Please sign in to comment.