[Lift] Re: Anything similar as Rack::Test and rspec for lift applications?

2009-11-10 Thread David Pollak
On Wed, Nov 4, 2009 at 12:30 PM, Vesa brut...@gmail.com wrote: Anybody aware of any examples using testkit? See: http://svn.apache.org/viewvc/incubator/esme/trunk/server/src/test/scala/org/apache/esme/JettySetup.scala?revision=834618view=markup

[Lift] Re: Anything similar as Rack::Test and rspec for lift applications?

2009-11-04 Thread ben
Vesa, Maybe I'm way off, but is there a problem with using Ruby tools like rack or cucumber to test webapps written in Lift ? I've got a webapp written in Lift, with all the web acceptance tests written in cucumber+webrat, and all the code level tests written in scala-test+specs - ie the classic

[Lift] Re: Anything similar as Rack::Test and rspec for lift applications?

2009-11-02 Thread Jim Barrows
Scala has 2 test frameworks (Specs http://code.google.com/p/specs/, scala test http://www.artima.com/scalatest/) that I'm aware of, and can make use of the selenium test framework http://seleniumhq.org/. You could also, I suppose use JUnit or TestNG java frameworks if you wanted, again with

[Lift] Re: Anything similar as Rack::Test and rspec for lift applications?

2009-11-02 Thread David Pollak
On Mon, Nov 2, 2009 at 7:39 AM, Jim Barrows jim.barr...@gmail.com wrote: Scala has 2 test frameworks (Specs http://code.google.com/p/specs/, scala test http://www.artima.com/scalatest/) that I'm aware of, and can make use of the selenium test framework http://seleniumhq.org/. And Lift's

[Lift] Re: Anything similar as Rack::Test and rspec for lift applications?

2009-11-02 Thread Vesa
Hi, I'm aware of Selenium, but it operates on higher level than Rack::Test and is slower although testing mimics real world situations better as it drives a real browser. Can I find some examples of testkit somewhere? - Vesa On 2 marras, 17:04, David Pollak feeder.of.the.be...@gmail.com wrote: