Public Gists by josephwilk

Gravatar
Tue Oct 27 14:06:41 -0700 2009
1
2
3
joseph-wilks-mac-pro:cucumber josephwilk$ bin/cucumber features/wire_protocol.feature -v --format pretty
Using the default profile...
Code:
Gravatar
Sun Oct 25 14:51:30 -0700 2009
1
2
3
joseph-wilks-mac-pro:cucumber josephwilk$ bin/cucumber features/wire_protocol.feature --verbose --format pretty
Using the default profile...
Code:
Gravatar
Sun Oct 25 13:51:02 -0700 2009
1
2
3
(::) failed steps (::)
 
Failed with exit status 1
Gravatar
Fri Oct 23 09:20:51 -0700 2009
1
2
3
def undefine_task(*names)
  app = Rake.application
  tasks = app.instance_variable_get('@tasks')
Gravatar
Thu Jun 25 13:09:07 -0700 2009
1
2
3
gem 'term-ansicolor'
require 'term/ansicolor'
 
Gravatar
Thu Apr 02 13:04:08 -0700 2009
1
2
3
    
 
  module TestMe
gist: 75378 Pdf formatter for Cucumber ...
Gravatar
Sat Mar 07 08:31:50 -0800 2009
1
2
3
#cucumber --require pdf_formatter.rb --quiet --dry-run --format Cucumber::Formatter::Pdf features/
 
require 'cucumber/formatter/console'
Gravatar
Fri Feb 20 06:57:29 -0800 2009
1
2
3
desc "Run cucumber features with real browser"
task :browser => ['features:start', 'cuke_browser']
 
Gravatar
Tue Feb 17 10:49:12 -0800 2009
1
2
3
#!/usr/bin/env ruby
require 'rubygems'
require 'trollop'
Gravatar
Sat Feb 07 09:20:42 -0800 2009
1
2
3
# the feature we are trying features/manage_cukes.feature
Feature: Manage cukes
  In order to use scenario outlines
Gravatar
Sat Feb 07 09:14:25 -0800 2009
1
2
3
# trying out the scenario outlines cucumber feature
 
$ gem list cucumber; gem list webrat
Gravatar
Sun Jan 25 12:03:55 -0800 2009
1
2
3
Feature: backgrounds
  In order to provide a context to my scenarios within a feature
  As a feature editor
Gravatar
Wed Jan 21 11:42:39 -0800 2009
1
2
3
  Scenario Outline: passing background
    Then I should have '<count>' cukes
 
gist: 48018 Background feature for Cucu...
Gravatar
Fri Jan 16 09:25:23 -0800 2009
1
2
3
Feature: Backgrounds
  In order to provide a context to my scenarios within a feature
  As a feature editor
gist: 41042 Cucumber ANTLR grammar
Gravatar
Sun Dec 28 12:53:21 -0800 2008
1
2
3
grammar Gherkin;
 
//options {
gist: 39375 Cucumber treetop grammar
Gravatar
Tue Dec 23 09:19:03 -0800 2008
1
2
3
module Cucumber
# :stopdoc:
module TreetopParser
Gravatar
Sat Dec 13 04:58:50 -0800 2008
1
2
3
module Cucumber
  module Parser
    grammar Table
Gravatar
Fri Dec 12 03:22:24 -0800 2008
1
2
3
default: rails
rails: --require features/support/rails_env --require features/step_definitions/common --require features/step_definitions/rails/ features/rails/
browser: --require features/support/browser_env --require features/step_definitions/common --require features/step_definitions/browser features/browser/
Gravatar
Fri Nov 21 08:18:12 -0800 2008
1
2
3
default: rails
rails: --require step_definitions/common --require step_definitions/rails rails/
browser: --require step_definitions/common --require step_definitions/selenium browser/
Gravatar
Thu Nov 20 07:03:40 -0800 2008
1
2
3
require 'set'
 
module BagOfMatchers