cucumber ecosystem presentation

Post on 11-May-2015

1.172 Views

Category:

Technology

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

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

TRANSCRIPT

ecosystem people

platforms

IDEs

CI

tools

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

vendredi 16 octobre 2009

Platforms

ruby

jruby

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

web

webrat

selenium, culerity, watir, webdriver

vendredi 16 octobre 2009

Textgem install kosma-pickler

vendredi 16 octobre 2009

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

top related