views:

99

answers:

1

I'm coming from a Ruby/Rails world. I'm getting testing set up on a Sinatra project (with Rack::Test). I usually use Fixtures in testing. Is there an equivalent for Sinatra?

How do people set up their Sinatra test suites (outside of the basic helloworld example that is the only example I can find for Sinatra tests).

Thanks!

+3  A: 

I use Machinist for this (and Rails, also. Hate YAML fixtures.)

x1a4