Cucumber Ecosystem Presentation

10
ecosystem people platforms IDEs CI tools Jean-Michel Garnier - http://21croissants.com Apero Ruby Lyon, 15/10/2009 vendredi 16 octobre 2009

description

10min Lightning talk given at Apero ruby @Lyon to describe cucumber ecosystem

Transcript of Cucumber Ecosystem Presentation

Page 1: Cucumber Ecosystem Presentation

ecosystem people

platforms

IDEs

CI

tools

Jean-Michel Garnier - http://21croissants.com Apero Ruby Lyon, 15/10/2009

vendredi 16 octobre 2009

Page 3: Cucumber Ecosystem Presentation

Platforms

ruby

jruby

cuke4duke (Scala, Clojure, maven), .net, flex

web

webrat

selenium, culerity, watir, webdriver

vendredi 16 octobre 2009

Page 8: Cucumber Ecosystem Presentation

Textgem install kosma-pickler

vendredi 16 octobre 2009

Page 9: Cucumber Ecosystem Presentation

Optimize? Memoize!describe BowlingGame do def game @game ||= BowlingGame.time_consuming_method end  it "scores all gutters with 0" do 20.times { game.roll(0) } game.score.should == 0 end  it "scores all 1's with 20" do 20.times { game.roll(1) } game.score.should == 20 endend

vendredi 16 octobre 2009