Skip to content

Instantly share code, notes, and snippets.

@sankage
Last active December 17, 2015 08:19
Show Gist options
  • Save sankage/5579397 to your computer and use it in GitHub Desktop.
Save sankage/5579397 to your computer and use it in GitHub Desktop.
Jekyll Testing { rbenv 0.4.0 } { ruby 2.0.0p0 (2013-02-24 revision 39474) [x86_64-darwin12.2.0] }
➜ bundle install
Fetching gem metadata from https://rubygems.org/.......
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.0.4)
Installing RedCloth (4.2.9)
Using i18n (0.6.1)
Using multi_json (1.7.3)
Using activesupport (3.2.13)
Using addressable (2.3.4)
Using metaclass (0.0.1)
Using mocha (0.10.5)
Using bourne (1.1.2)
Installing builder (3.2.0)
Using fast-stemmer (1.0.2)
Using classifier (1.3.3)
Using colorator (0.1)
Using highline (1.6.19)
Using commander (4.1.3)
Using diff-lcs (1.2.4)
Installing gherkin (2.11.8)
Installing cucumber (1.2.5)
Using directory_watcher (1.4.1)
Using kramdown (1.0.2)
Using liquid (2.5.0)
Using syntax (1.0.0)
Using maruku (0.6.1)
Using posix-spawn (0.3.6)
Using yajl-ruby (1.1.0)
Using pygments.rb (0.5.0)
Using safe_yaml (0.7.1)
Using jekyll (1.0.2) from source at /Users/davidbr/Dropbox/Projects/forks/jekyll
Installing json (1.8.0)
Installing launchy (2.1.2)
Using rdiscount (1.6.8)
Using rdoc (3.12.2)
Using redcarpet (2.2.2)
Installing redgreen (1.2.2)
Installing rr (1.0.5)
Installing shoulda-context (1.0.2)
Using shoulda-matchers (1.4.2)
Installing shoulda (3.3.2)
Using simplecov-html (0.7.1)
Using simplecov (0.7.1)
Installing simplecov-gem-adapter (1.0.1)
Using bundler (1.3.0)
➜ bundle exec cucumber
Using the default profile...
Feature: Create sites
As a hacker who likes to blog
I want to be able to make a static site
In order to share my awesome ideas with the interwebs
Scenario: Basic site # features/create_sites.feature:6
Given I have an "index.html" file that contains "Basic Site" # features/step_definitions/jekyll_steps.rb:28
When I run jekyll # features/step_definitions/jekyll_steps.rb:125
Then the _site directory should exist # features/step_definitions/jekyll_steps.rb:143
And I should see "Basic Site" in "_site/index.html" # features/step_definitions/jekyll_steps.rb:147
Scenario: Basic site with a post # features/create_sites.feature:12
Given I have a _posts directory # features/step_definitions/jekyll_steps.rb:46
And I have the following post: # features/step_definitions/jekyll_steps.rb:50
| title | date | content |
| Hackers | 3/27/2009 | My First Exploit |
When I run jekyll # features/step_definitions/jekyll_steps.rb:125
Then the _site directory should exist # features/step_definitions/jekyll_steps.rb:143
And I should see "My First Exploit" in "_site/2009/03/27/hackers.html" # features/step_definitions/jekyll_steps.rb:147
/Users/sankage/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/cucumber-1.2.5/lib/cucumber/rb_support/rb_world.rb:103: stack level too deep (SystemStackError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment