Re: [rspec-users] rspec-rails and rack middleware

2009-09-22 Thread Aaron Gibralter
Ah true, I definitely just realized that. The reason I was trying to use rails though was to provide endpoints for the calls passing through my middleware. For that though, I can just use the dummy app. Thank you! On Tue, Sep 22, 2009 at 10:25 AM, Stephen Eley wrote: > On Tue, Sep 22, 2009 at 8:

Re: [rspec-users] rspec-rails and rack middleware

2009-09-22 Thread Stephen Eley
On Tue, Sep 22, 2009 at 8:24 AM, Aaron Gibralter wrote: > > I can get the dummy_app to work, but now I'm trying to figure out how to use > my Rails app. I'll keep playing around and see if I can come up with > anything. It sounds like you're trying to do integration testing (all the pieces of the

[rspec-users] rspec-rails and rack middleware

2009-09-22 Thread Aaron Gibralter
Ah ok. I tried that, but I can't seem to figure out what to use for the def app ... end method in my spec though. The app is my Rails app... for now I have something like: http://www.pastie.org/625791 I can get the dummy_app to work, but now I'm trying to figure out how to use my Rails app. I'l

Re: [rspec-users] rspec-rails and rack middleware

2009-09-21 Thread Stephen Eley
On Tue, Sep 22, 2009 at 12:22 AM, Aaron Gibralter wrote: > It doesn't seem like my controller specs are calling my middleware on > requests. Has anyone figured out a good way to test middlware with rspec? Rack::Test is your friend: http://github.com/brynary/rack-test If you Google it, there's a

[rspec-users] rspec-rails and rack middleware

2009-09-21 Thread Aaron Gibralter
It doesn't seem like my controller specs are calling my middleware on requests. Has anyone figured out a good way to test middlware with rspec? I'm thinking something like rails' rails/actionpack/test/controller/session/mem_cache_store_test.rb but with rspec... any thoughts? Thanks! Best, Aaron __