0
votes
0answers
61 views

Testing Sinatra application with RSpec and Cucumber/Capibara

I need to test my Sinatra application by RSpec and either Cucumber or Capybara. RSpec is the most important. I run through a few Sinatra examples of how to test and found them mostly either outdated ...
0
votes
1answer
397 views

RSpec + Sinatra + Capybara (+ webkit) for js textarea testing

I'm trying to test a sinatra (1.3.2) application with fields that are updated using data-bind's through Knockout.js to concatenate on client-side and I need to run some tests on this. However I can't ...
0
votes
1answer
375 views

Capybara testing of sinatra app fails

I am trying to test a sinatra app using minitest and capybara but get several errors on all tests using capybara features like fill_in or visit. test_index gives: undefined local variable or ...
0
votes
1answer
125 views

Uncaught throw :halt

I'm trying to implement basic http authentication, but I need to return different HTTP status codes based upon the status of the account beeing authenticated. I'm using Sinatra to host the API, and ...
4
votes
2answers
2k views

stack level too deep (SystemStackError)

I have Sinatra application and need to test my application. features/support/env.rb: require_relative "../../application" require "capybara" require "capybara/cucumber" require "rspec" World do ...
0
votes
0answers
192 views

Ruby JSON issue

I know the title is a bit vague, but I dont know what to put on there. I'm developing an API with Sinatra for our backend in Ruby. The thing is that I need to be able to pass JSON to the service ...
1
vote
1answer
776 views

undefined method `have_content' using Cucumber / Capybara / sinatra

I'm trying to validate the start of an initial page for a Sinatra application but am struggling to get the testing framework working. Googling around suggests I add cucumber/rails/rspec or similar, ...
1
vote
1answer
845 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! ...
0
votes
2answers
2k views

Cucumber + Capybara file upload not working for me

I'm trying to test a simple file upload with Capybara. Here is my Gemfile.lock capybara (1.1.2) mime-types (>= 1.16) nokogiri (>= 1.3.3) rack (>= 1.0.0) rack-test (>= 0.5.4) ...
0
votes
1answer
278 views

Render HAML Views With RSpec, Capybara on Sinatra

I'm trying to test views of a Sinatra app with RSpec and Capybara. The views are all HAML. If I run a test like this: it 'should load an index page' do get '/' last_response.should be_ok ...
3
votes
1answer
786 views

Using Capybara to test pure JavaScript application

I'm having some problems using Sinatra with Capybara. I want to test a pure javascript application. It's just a plain index.html that is being served by Sinatra. require "sinatra" get "/" do ...
0
votes
1answer
1k views

Response Method not there with Sinatra, Rspec & Capybara

I'm trying to use Capybara + Rspec to test a Sinatra app, and I'm having some trouble integrating Capybara with Rspec. Here's my spec_helper.rb: require './myapp' require 'capybara/rspec' ...
0
votes
2answers
466 views

how to run capybara sinatra

I was given a sample sinatra project with a hello world for capybara testing in akephalos. I understand the concept by looking at the code, but how do i run it? If I run rackup config.ru, and then ...
4
votes
2answers
2k views

Setup Cucumber, Capybara and RSpec with Modular Sinatra application

Here's my config.ru $:.unshift File.join(File.expand_path(File.dirname(__FILE__)), 'config') require 'boot' Routes = Rack::Mount::RouteSet.new do |set| set.add_route App::Users, { :path_info => ...
2
votes
2answers
3k views

How do I configure RSpec with Sinatra to dynamically determine which Sinatra app is running before my test suite runs?

Ok so. I'm wanting to do request specs with RSpec for my Sinatra app. I have a config.ru # config.ru require File.dirname(__FILE__) + '/config/boot.rb' map 'this_route' do run ThisApp end map ...
3
votes
2answers
490 views

Cucumber/Capybara returning 'Not Found' page after a redirect

first, sorry for the bad english. I have a test that submit a login form. after redirect, when I test for a message 'successfully logged...' then my page.body is '<h1>Not ...