Tagged Questions
0
votes
1answer
23 views
How can I click_link a specific row with Capybara
I'm trying to write all my Capybara code to not use any CSS or funny matchers. For acceptance test purposes, I'm using Capybara to navigate only by button and link text that is visible to the user.
...
2
votes
2answers
83 views
Rails - Cannot get Rspec click link to work
Hey I am doing click_link in rspec rails then checking the linked page for content. The content is definitely on that page but it's still giving me an error that it is not.
The error
Failure/Error: ...
0
votes
1answer
46 views
Rspec/Rails and testing validates_uniquess_of with scope
Here is my test code:
require 'spec_helper'
describe Classroom, focus: true do
let(:user) { build_stubbed(:user) }
describe "associations" do
it { should belong_to(:user) }
end
...
0
votes
1answer
30 views
Whats the best way to integration test a facebook application?
So, I have a facebook App that I am testing. I'd like to test a user's interaction on the app, and I'm having an issue.
The user flow that I'm testing is relatively simple: when a user comes to ...
0
votes
1answer
46 views
Rspec — How to test method by calling it and checking for change in object
I am learning how to write tests so I'm writing one for a small method that I wrote. I want to call this method, update_user_region_id, and I should be expecting a change in the user object.
def ...
0
votes
0answers
66 views
Am I using TDD and vcr the right way?
So what I'm doing is allowing an admin user to create a mailing campaign via a 3rd party mailing service such as Aweber. My question is: am I writing my tests with VCR the right way. Currently, I ...
0
votes
2answers
43 views
How to make tests with find and date conditions?
I'm trying to develop some tests for a method which is responsible for retrieve some users created after some date. I don't know how to mock tests for it. The method is the following:
def user_list
...
1
vote
2answers
158 views
Rspec takes too long to load
I am using Rspec with my Rails 3.2.11 app. I have installed and set up spork.
I use datamapper as ORM.
Yet when spork is running, a running a single test takes more than a minute.
Even if the test ...
0
votes
1answer
116 views
DRY rspec syntax for controller specs
Typically in my controller specs I'll do something like this:
describe MyController do
describe 'POST #create' do
let!(:my_model) { initialize_something_here }
before :each do
post ...
1
vote
1answer
285 views
`should respond_with_content_type` and `should respond_with` fail because response is nil
In the following test, I'm expecting a visitor to my page who is not logged in to get '404' and for the content-type of the response to be html, which I've expressed like this:
require 'spec_helper'
...
2
votes
0answers
217 views
prepare called on a closed database rails rspec
I am trying to integrate BDD in my rails app via rspec. I am using guard and spork-rails to speed the monitoring process up. I am getting this error:
An error occurred in an after hook ...
-2
votes
1answer
133 views
Tutorials of TDD, BDD and RSpec? [closed]
I am new to rails and want learn the TDD,BDD and RSpec. So can anyone suggest me some good tutorials of TDD,BDD and RSpec.
Thank You!!
0
votes
2answers
61 views
Can Tabs or Spaces break tests or programs?
I read "Ruby on Rails Tutorial 3" and try to figure out tests. I just realized that my (very simple) tests broke because i was somehow mixing tabs and spaces for indentaion.
As a result I received ...
1
vote
2answers
77 views
Testing custom validators with rspec. Why do I get Proc?
As the title suggest I am trying to test a custom validator with Rspec. I get an error and I don't understand why... If you can shed some light I would really appreciate it. Here we go:
Validator ...
1
vote
1answer
238 views
FactoryGirl,Rspec2 and devise rails 3
I am using Rspec, FactoryGirl and Spork for my tests.There are 2 things I am a litte unclear on, first is the location of my factories.rb file. At present I have it located in
...
0
votes
2answers
223 views
Seeds.rb development environment also getting applied to test environment
I need certain things to be seeded into a test environment, specifically, user roles from CanCan. BUT it seems to load everything under development.
lib/tasks/test _ seed.rake
namespace :db do
...
1
vote
2answers
391 views
Writing test cases(Rspec) for existing application
Being Rspec noob, i dont know this question make sense. BUt i am really confused and couldnt get solution for this.
We have one new requirement, asked us to write Rspec test cases for existing ...
1
vote
2answers
396 views
“nil is not a symbol” for model count in rspec matcher
I am trying to write an integration test where if a user clicks on a button, it creates a new record in the database (CheckPrice model).
I am running into the error nil is not a symbol when I try to ...
2
votes
3answers
645 views
RSpec with Ruby on Rails - Wrong number of arguments (1 for 0) when testing routes
I tried testing routes and just copied the example from the rspec-rails documentation.
describe "routing to profiles" do
it "routes /profile/:username to profile#show for username" do
...
0
votes
1answer
90 views
Rails: Repeating unit test - DRY?
Is there any standard practice to DRY-out the repeating unit test cases in rails. For e.g. I have many models with the "name" attribute, I want to do same kind of unit tests for each model. I vaguely ...
1
vote
1answer
283 views
Simplifying and correct RSpec controller tests
I have a few RSpec controller tests. Some work, some don't, and I'm trying to figure out how on Earth to fix them up and make them more efficient
Ideally, I would like to see if I can get each spec ...
0
votes
1answer
155 views
What code quality / code coverage tools are available for checking Javascript tests in Jasmine?
What code quality / code coverage tools are available for Jasmine?
Working in Rails 3.2.2.
0
votes
1answer
28 views
Figuring out named resources/paths in rails 3
I am new to rails and I am writing some tests using Capybara and cucumber.
Scenario: Successful login
Given a user "admin@adm.com" with password "admin123"
And I am on the sign in page
Given ...
0
votes
0answers
73 views
Capybara does not press button. Throws error: undefined method `name' for nil:NilClass
I have just started writing test using cucumber and capybara.
I have been able to write simple steps. Although when I am trying to click on
a sign in button I keep getting a rather confusing error. ...
0
votes
0answers
121 views
TDD in Rails: Failure/Error: visit login_url undefined local variable or method 'login_url'
I am following Ryan Bate's Railscast (http://railscasts.com/episodes/275-how-i-test?view=asciicast) for TDD.
I implemented his password recovery from another video and now I am going back to learn ...
2
votes
2answers
621 views
railstutorial.org, Chapter 6. unknown attribute: password
I have finished Chapter 6 of railstutorial but all my User model specs have started failing soon after I added password & password_confirmation with the following errors:
Failures:
1) User
...
2
votes
1answer
300 views
Rails Rspec & FactoryGirl testing Association
I'm new to rails TDD so please bare with me. I have to model's where I accept Nested Attributes. I would like to build a test to make sure the nested attribute cant be blank etc. I really don't ...
2
votes
1answer
368 views
Testing presence and belongs_to with Rspec
I'm trying to learn how to test with Rspec.
At the moment I have a spec for an Item class:
require 'spec_helper'
describe Item do
it { should belong_to :list }
before(:each) do
@item = ...
0
votes
2answers
531 views
How to keep rspec tests DRY with lots of “have_link”
I'm new to Ruby on Rails and I'm doing http://ruby.railstutorial.org right now.
From what I understand the language is supposed to follow this DRY standard wery strictly but it's so WET when it comes ...
1
vote
1answer
402 views
Capybara ajax race conditions
I am frequently running into issues in capybara with request tests failing because capybara is not waiting for ajax events to complete before moving on.
Google seems to indicate I should be using ...
5
votes
1answer
493 views
How do I write this with rspec
I upgraded my version of rspec to the most current version and I have tests breaking that have similar syntax
it "should delete a company" do
expect { click_link "Delete Company" }.should ...
0
votes
2answers
510 views
RSpec uniqueness email test fails with FactoryGirl
Edit
Using the answers to the question I changed the test to the following which tests correctly and passes..
describe "when email is already taken" do
let(:user_with_same_email) { @user.dup }
...
1
vote
0answers
181 views
Test details not provided with Guard + Rspec under Ubuntu with Gem libnotify
I'm setting up the testing of my rails apps with the combination of Guard, Spork and Rspec.
Everything seems to be correctly installed and I got the notification of the tests through libnotify.
...
0
votes
1answer
208 views
Real example on how to do TDD/BDD with Rspec and Cucumber
I find it not so easy as one might think to start with TDD in Rails.
I've searched for some examples but no-one really explains how to do TDD/BDD with Rspec AND cucumber. They usually use an old ...
0
votes
1answer
625 views
Bundle exec rspec spec/static_pages_spec.rb cannot load error
I am trying to test a Rails app using Michael Hartl's tutorial, but I am getting following error after typing bundle exec rspec spec/requests/static_pages_spec.rb (I am in the sample app directory)
...
0
votes
1answer
160 views
RSpec giving an error on every action in controller?
this is weird, I'm running bundle exec guard on my rails application and I'm getting a long list of errors for every single action in one solitary container. And all the errors are exactly teh same ...
0
votes
1answer
82 views
Dirty database after failed test run, how to fix?
For my tests I'm using the combination of the latest Rspec, FactoryGirl, Guard against a local SQLite database. When I'm developing BDD-style, I will often write a failing test that has the likelihood ...
0
votes
0answers
48 views
Integration test not working as expected
I've the following integration test:
describe "Tags Post Page" do
context 'with data present' do
before do
@title = 'Resultados para Aichi-ken'
2.times { ...
2
votes
1answer
657 views
Rails 3 testing framework confusion
I have been watching Ryan Bates' RailsCasts for years now, and I'm also a customer of the pay portion of the site. I learned BDD from watching Cucumber episodes in the past.
Now I have learned about ...
0
votes
0answers
636 views
Rspec controller test
I have the following update action in my UsersController, which I'm testing:
def update
@user = User.find(current_user.id)
if @user.update_attributes(params[:user])
flash[:success] = ...
0
votes
1answer
395 views
RSpec throws false positives for elements on a page
I am having some real issues trying to figure out what is going on with my application at the moment. I am trying to ensure that I can show users different content on an 'edit profile' page depending ...
2
votes
1answer
173 views
How to DRY up this rspec test?
I'm using a gem and want to add 40+ additional rspec tests to it. The gem comes with a set of specs, but they're not very DRY -- each one of the 40+ tests I want to add would require 10-12 lines of ...
2
votes
2answers
695 views
How do I debug cucumber tests?
I have:
When /^(?:|I )follow "([^"]*)"(?: within "([^"]*)")?$/ do |link, selector|
with_scope(selector) do
click_link(link)
end
end
Which I call from:
Background:
Given I am an existing ...
4
votes
2answers
470 views
Ruby tutorial Ch9 Exercise #9 - Don't Allow Admin to Delete Themselves
I am a total newbie to Ruby and Rails which is why I am going through the Rails Tutorial by Michael Hartl. I am stuck on Chapter 9, Exercise #9. I have updated the def destroy code in the Users ...
0
votes
1answer
201 views
Rspec what is wrong with my test for create controller action?
I am trying to learn TDD and this is part of my homework I couldn't figure out how to do it.
I want to test create controller action, and here is my code for test:
require 'spec_helper'
describe ...
3
votes
2answers
1k views
Rails using Rspec to test ---> ActionView::MissingTemplate:
I am trying to test something very simple with Rsec on my Rails app.
This is the test piece of code in spec/controllers/movies_controller_spec.rb
describe MoviesController do
describe 'update' ...
0
votes
0answers
194 views
Testing for authlogic authorization not working in rspec
I'm spending a lot of time and trying to learn tdd and it is challenging for me. I am also using authlogic for authentication/authorization.
First, I have this relationship:
class User < ...
1
vote
1answer
447 views
Stubbing Ajax requests in Cucumber / Capybara / Selenium?
In my Rails 3.2 project, I send an occasional http request to http://jsonip.com from Javascript. But when running Cucumber with the @javascript tag, the request gets sent very frequently. This is ...
0
votes
1answer
426 views
How to test this code with RSpec?
I have the following simple class and HTTParty method:
class Token
require 'httparty'
include HTTParty
base_uri 'https://<some url>'
headers 'auth_user' => 'user'
headers ...
0
votes
1answer
174 views
What are the variables inn my cucumber feature for
I have an application that i am looking at and i have this code
Feature: Contact us
In order to allow users to contact us for help with the site
As a user of the site
I want to be able to ...

