Tagged Questions
0
votes
1answer
86 views
New to Rails — Webrat methods not working in integration test
I have a Gemfile:
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'thin'
# Bundle edge Rails instead:
# gem ...
1
vote
1answer
120 views
How do you set up Rack::URLMap to work with RSpec in Sinatra?
I'm relatively new to Sinatra, and I want to figure out a way to integrate RSpec with my Sinatra setup.
config.ru
require 'sinatra'
require 'mongoid'
require 'uri'
require './lib/twilio_wrapper'
...
0
votes
1answer
79 views
Testing Rails/Rack applications using rails console
My simplistic understanding of the Rails stack is that it does the following (in general)
The input is a HTTP message (GET, POST, PUT, DELETE, HEAD), a URL, some (optional) cookies, a (optional) ...
1
vote
1answer
855 views
How can I test Rack middleware?
I'm writing a middleware that does something like this
Given I am logged in
When I visit home page
Then the request and all of my user information should get logged into CouchDB
This is basically ...
1
vote
1answer
842 views
Rack error with capybara/sinatra test… Doesn't seem to get the Sinatra app passed on
Trying to set up capybara/rspec for testing a simple sinatra app but keep getting a rack error.
hello.rb
require 'sinatra'
class App < Sinatra::Base
get "/" do
"hello hello!"
end
run! ...
1
vote
1answer
505 views
Sinatra, Rack::Test, and Conditional GET requests
I've got a Sinatra 1.2.0 app that is doing Last-Modified validation caching with Rack::Cache. Things are working great-- I call last_modified in my route body and if the cache has an up-to-date copy, ...
0
votes
1answer
135 views
How to slow down file downloads on local ruby webserver?
I'd like to mock large (>100MB) and slow file downloads locally by a ruby service - rails, sinatra, rack or something else.
After starting server and writing something like: ...
2
votes
5answers
554 views
Sinatra tests always 404'ing
I have a very simple Sinatra app which I'm having trouble testing.
Basically, every single request test returns a 404 when I know from testing in the browser that the request works fine. Any ideas ...
8
votes
2answers
1k views
Making Rails tests aware of Rack middleware outside Rails's internal chain
Context: an application uses a piece of Rack middleware that must be setup in config.ru, rather than Rails's internal Middleware chain. This is for reasons not relevant to this question.
Question: ...
3
votes
4answers
2k views
How to test Sinatra app using session
How to test Sinatra application wich is using session?
get "/", {}, {'rack.session' => { 'foo' => 'blah' } }
This code doesn't work for me, I have 'enable :sessions' in my app.
7
votes
4answers
2k views
How can I test helpers blocks in Sinatra, using Rspec?
I'm writing a sinatra app and testing it with rspec and rack/test (as described on sinatrarb.com).
It's been great so far, until I moved some rather procedural code from my domain objects to
sinatra ...
4
votes
1answer
572 views
In Sinatra - does anyone use test fixtures? how is your test suite set up?
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 ...
5
votes
2answers
1k views
Testing controller instance variables with Rack::Test and Sinatra
I have a Sinatra app that serves pages as read-only or editable depending on if the user is logged in.
The controller sets a variable @can_edit, that is used by the views to hide/show edit links. How ...
0
votes
2answers
586 views
How do I get the response returned from Rack in a Cucumber step?
I have a Cucumber step for my Rails application:
Then /^I should be redirected to the sign in page$/ do
assert_equal 302, @response.status
end
But that @response object is the one returned by my ...