Merge pull request #4046 from chrisfinazzo/style-the-test-code

Merge pull request 4046
This commit is contained in:
Parker Moore 2015-10-19 09:59:50 -07:00
commit 4e01722941
1 changed files with 4 additions and 4 deletions

View File

@ -45,20 +45,20 @@ Test Dependencies
To run the test suite and build the gem you'll need to install Jekyll's
dependencies. Simply run this command to get all setup:
$ script/bootstrap
<figure class="highlight"><pre><code>$ script/bootstrap</code></pre></figure>
Before you start, run the tests and make sure that they pass (to confirm your
environment is configured properly):
$ script/cibuild
<figure class="highlight"><pre><code>$ script/cibuild</code></pre></figure>
If you are only updating a file in `test/`, you can use the command:
$ script/test test/blah_test.rb
<figure class="highlight"><pre><code>$ script/test test/blah_test.rb</code></pre></figure>
If you are only updating a `.feature` file, you can use the command:
$ script/cucumber features/blah.feature
<figure class="highlight"><pre><code>$ script/cucumber features/blah.feature</code></pre></figure>
Both `script/test` and `script/cucumber` can be run without arguments to
run its entire respective suite.