Remove a useless given step

Since the highlighter configuration option should default to pygments,
we don't have to explicitly set it in the step testing the output with
pygments.
This commit is contained in:
Robin Dupret 2013-12-23 12:43:25 +01:00
parent 3ca2cb0119
commit 5647a902de
1 changed files with 0 additions and 1 deletions

View File

@ -92,7 +92,6 @@ Feature: Site configuration
Scenario: Highlight code with pygments Scenario: Highlight code with pygments
Given I have an "index.html" page that contains "{% highlight ruby %} puts 'Hello world!' {% endhighlight %}" Given I have an "index.html" page that contains "{% highlight ruby %} puts 'Hello world!' {% endhighlight %}"
And I have a configuration file with "highlighter" set to "pygments"
When I run jekyll When I run jekyll
Then the _site directory should exist Then the _site directory should exist
And I should see "Hello world!" in "_site/index.html" And I should see "Hello world!" in "_site/index.html"