0
votes
0answers
18 views

Why can't I populate a login form with a FactoryGirl.create(:user)?

I'm trying to test a login form with FactoryGirl, Rspec, and Capybara. I can test the signup form by running FactoryGirl.build(:user), but I can't login a user that is created by Factory Girl with ...
0
votes
1answer
19 views

Generic way to mock something in Ruby

How could I mock any method without using any gem? Suppose I have access to an complex object like request How could I make request.location.country to return a mocked value. I read I can mock ...
0
votes
2answers
24 views

Rails, sorcery: can I not hash the password at all?

So, I went into the Sorcery source code and discovered that it already does, without telling anyone, what Devise recommends doing for testing purposes: Set BCrypt stretches to 1. Woohoo. However, ...
2
votes
2answers
28 views

Why Is there an Error for my Test Code but not When I visit the Page Manually?

I have a site based on the Rails Tutorial. I added a boolean property to my User model called "show_extras" and added a checkbox for it to the User Profile page. My tests now fail when they reach code ...
2
votes
2answers
19 views

How to Catch up On Tests for Rails Site

I learned Rails to create a website and the basic version is up and running. Unfortunately, I only wrote a couple of tests for my code. What should I do now to get test coverage for my code? It will ...
0
votes
0answers
21 views

rake db:test:prepare does not setup test databse

I am using Rails 4.0.0.rc1 with sqlite3 and trying to setup the test database for testing. bundle exec rake db:test:prepare did not create the tables in the test database. After following this ...
0
votes
2answers
34 views

Rails MiniTest 'post' method not found

I'm receiving the following error when I try to run my request specs: POST :: /users/:id/authentications request::successful request#test_0001_Adds an authentication record to a user: NoMethodError: ...
0
votes
1answer
22 views

Ruby on Rails Method Mocks in the Controller

I'm trying to mock a method call to an outside API inside one of my rails controllers (in this case, Instagram.get_access_token) and I'm having some trouble. As written, the code is still calling the ...
0
votes
3answers
19 views

capybara choose multiple radio buttons

I'm running Capybara tests, and I'm stuck on the following test: page.all("input").each do |s| if s.value == "E" choose(s) end end click_button "Save answers" end I have over 500 ...
3
votes
1answer
28 views

Rspec, ensuring a method is called on a Rails controller class

I have some 3rd party library included in my application controller. require 'new_relic/agent/method_tracer' class ApplicationController < ApplicationController::Base end I want use it in ...
0
votes
2answers
19 views

Testing a rails controller method that is designed to change data of a variable

I have the following code in the controller: # guest to user sign up view. Method that prepares a guest to become a user by emptying it's generic #e-mail address. def guest_signup if ...
0
votes
1answer
18 views

Mailer throwing undefined [] for nil in rails rspec

I have recently started seeing the following error message among my rspec output: undefined method [] for nil:NilClass Note this does not make the test fail, it just puts this error message to the ...
0
votes
0answers
37 views

Why does the ruby debugger lose keystrokes?

For some reason, my ruby debugger appears to lose keystrokes, and I have no idea why. I am writing a ruby on rails app, and am trying to debug some of my functional tests. For some reason, some of ...
0
votes
1answer
41 views

How to Test a Concern in Rails 4

Given that I have a Personable concern in my Rails 4 application which has a full_name method, how would I go about testing this? concerns/personable.rb module Personable extend ...
0
votes
1answer
30 views

Rails: Test module defined by default in all modules but actually… not really

If I do the following in irb: module Useless ; end Useless.const_defined? 'Test' It obviously returns => false But when I do the same in any of my rails apps console, the answer is: => ...
1
vote
1answer
20 views

How do I use an rpec shared_examples across different files?

I want to reuse this shared_examples block across different spec files. I want to extract it into a separate file, and pass in the object so it's not always user. Both things I tried failed, is it ...
0
votes
1answer
29 views

Rails application settings and tests

In my app I've used SettingsLogic to handle the app's settings (such as facebook tokens etc.) which is a gem that basically parses the config/application.yml file and provides easy access to its ...
0
votes
1answer
28 views

Validate presence of shipping address unless it's same as billing address

I have this in my Order class. I want to validate the presence of shipping_address unless it's the same as the billing_address. My specs keep failing, however. class Order < ActiveRecord::Base ...
2
votes
1answer
47 views

RSpec suite performance difference

I've got an interesting problem that's causing myself and my team a lot of headaches when it comes to running our spec suite. Our spec suite is broken up into the following sub-folders, and next to ...
0
votes
0answers
26 views

undefined method relative_url_root for nil:NilClass when running rspec on namespaced controller

I'm working on a rails 2.3.18 to 3.2.x upgrade, and I've run into a problem with this one set of controller tests: Error: /actionpack-3.2.12/lib/action_controller/test_case.rb:514:in ...
0
votes
0answers
15 views

Functional tests not running on an Engine in Rails 2.3.*

Yeah, Rails 2.3, no choice about it I'm afraid. I have a basic functional test defined in /test/functional/utils_controller_test.rb. It looks like this require File.dirname(__FILE__) + ...
0
votes
1answer
23 views

Dynamically generate factory attributes

I want to do following: classes = ["WelcomeMailing", "NoticeMailing", "FeedbackMailing"] #...... FactoryGirl.define do classes.each do |tclass| cl_attributes = ["body", "subject", ...
0
votes
0answers
30 views

RSpec Shoulda validates_presence_of nilClass

When I use Shoulda's validates_presence_of, it stumbles on a before_validation callback. before_validation :set_document, :set_product, :set_price I'm trying to get this spec to pass: it { ...
0
votes
1answer
19 views

How to write a reusable shared example in RSpec

I keep getting a wrong number of arguments (1 for 0) every time I run this. What am I doing wrong? describe Payment do before { @payment = build_stubbed(:payment) } subject { @payment } ...
2
votes
0answers
35 views

How can I include big support databases in my RSpec tests?

I have 3 large read-only databases that support my Rails 3.2 application in that values in them are examined and some of them stored along with ancillary information in my main database. I have these ...
-1
votes
1answer
64 views

Rails Rspec problems: undefined method 'has_link'

I'm at Hartl's tutoral Ch.8 now. I just finished to create sign in/sign out functionality which works fine, but the tests always fail. I can't find the solution. Failures: 1) Authentication signin ...
0
votes
1answer
57 views

Capybara assertions fail under Poltergeist

I have the following spec: # MUST BE TESTED WITH JAVASCRIPT. As you can see before, it is allowing # the Log Out link. On a real page, that element is hidden. it "logs out a user" do user = ...
0
votes
0answers
26 views

Should we always assign nil to instance variables in the teardown method?

I read this (late 2007) blog post and I'm wondering whether we should indeed always assign nil to instance variables in the teardown method. I'm using Ruby 1.9.3, Rails 3.2.13, and minitest-rails, ...
0
votes
0answers
27 views

How can I write tests for methods using the instagram api/gem mocking the actual service?

In a project I am accessing instagram using the gem provided. How do you guys write tests that don’t require calls to the service / mock it and stay meaningful? (I am using rspec, but this should not ...
0
votes
3answers
56 views

Why does my users table have a no column error?

I am getting the following error after running my tests in the console: ActiveRecord::StatementInvalid: SQLite3::SQLException: table users has no column named password: INSERT INTO "users" ...
1
vote
2answers
59 views

How to build a parent with child factory in one step in order to pass validation

Projects must have at least one task created at the same time to ensure the validation passes. This is the snippet I use to validate this: class Project < ActiveRecord::Base validates :tasks, ...
3
votes
1answer
123 views

Run cucumber through spork

I have the Exception encountered: #<SystemExit: exit> error, when trying run cucumber through spork. features/support/env.rb: require 'rubygems' require 'spork' require 'cucumber/rails' ...
1
vote
2answers
148 views

Integration test best practices

I looked in stackoverflow and could fine one or two questions that have a similar title than this one, but none of it answers what I'm asking. Sorry if this is duplicated. In unity tests, there is a ...
0
votes
0answers
52 views

Failing Rspec/Capybara “link_to” test although link appears on website

I am writing a Ruby on Rails application to manage library records. The website is at grinnelllendinglibrary.herokuapp.com I would like to test that, when a manager is signed in, they can see a link ...
3
votes
2answers
191 views

Feature Testing AngularJS Views in a Rails App Breaks When Switching From ERB to Angular

To begin, I had a working rails 'show' page displaying a projects name and entries belonging to the project. When the projects name was displayed using angular $scope and the entries using a block in ...
0
votes
3answers
62 views

Rails RSpec Sucker Punch

Please forgive the Rails, RSpec newbie question here. I'm trying to use RSpec to test methods inside a class I've created in the file app/workers/myworker.rb. Something like this: class MyWorker ...
1
vote
2answers
82 views

Rails Mailer: change file when delivery_method :file

I want to have the file named Timestamp + normal_mail_name + ".eml".. I looked into the rails source code, the mail-gem source code and the letter opener-gem.. Could you give me a hint how to ...
-1
votes
0answers
43 views

How to test Google Map pin color with cucumber/capybara

I'm using cucumber & capybara with Ruby on Rails, and I want to test the colors of the "pins" on a Google Map. I haven't found any answer yet on the Internet. Can anyone help me out? Thank you! ...
0
votes
0answers
35 views

save_and_open_page has stopped serving up my css

My testing setup was working very nicely serving up pages correctly formatted with css whenever I called save_and_open_page from within a test. I then set up some javascript tests and made a few ...
2
votes
1answer
112 views

Changed database to Postgres, now Rspec throwing errors: can't find object by id

I've formatted my computer and while reinstalling Rails changed my database to postgres, and now a few tests that were previously passing are failing, for example the following code: describe ...
2
votes
1answer
89 views

Testing flash message method in application_helper.rb code in Rails

I'm a bit new to test driven development, and I want to learn how to cover as much code as possible so when I make more complex apps in Rails, I'll be able to prevent bugs from introduced. I have ...
1
vote
1answer
151 views

How to integrate Grunt with Rails Asset Pipeline

The question is: how do you integrate Rails with Grunt? Just a quick brainstorm and I figured out that I need: PhanomJS Jasmine JSHint / JSLint I do not need or I don't know if I need (it's up to ...
0
votes
1answer
62 views

How do I test JQuery-UI Sortable's controller interaction in my Rails app using RSpec?

The problem The problem is that I know the controller sort action is being called, and that it's getting the right params to do its thing. I can see everything is working when I test through the UI, ...
1
vote
1answer
36 views

Shoulda and RSpec's before

I try to set a instance variable in a subject before testing validity of model fields. I need to set this variable, because validation is conditional (it is used only for some type of users). So I ...
2
votes
1answer
141 views

undefined method 'assign_to' after updating shoulda-matchers

I updated 'shoulda-matchers' in the Gemfile in my rails project from version 1.4.2 to 2.0.0 and now when I run my rspec tests, it is giving me the following error undefined method `assign_to' for ...
1
vote
2answers
73 views

Using Watir's .click inside of Bootstrap's popover

In Watir I am attempting to access an a element that appears inside of a popover supplied by Bootstrap. Just calling a(:class, 'my_link').click didn't want to play ball, so I added the line a(:class, ...
0
votes
2answers
63 views

Ruby on Rails: testing if values do exist?

I'm trying to test if my values are existing... Not sure how to do this, I'm just starting to learn Ruby on Rails. Hopefully someone can point me to the right direction? Lets say I have this block of ...
3
votes
1answer
71 views

FactoryGirl define attribute by calling method on another factory

Here is an example from the FactoryGirl documentation: FactoryGirl.define do factory :post do name "Post name" user end end In this example, user is invoking another factory. What I ...
0
votes
1answer
52 views

How do I get this rspec test to pass?

I can't for the life of me figure out why these tests are failing. When a user puts in their email/password and hits the Log in button, they are redirected to their profile page which puts their ...
0
votes
1answer
39 views

FactoryGirl creations don't show up in Selenium tests

I have a simple test case that looks like this: describe 'Quiz packs page' do before :each do FactoryGirl.create(:quiz_pack, :first_in_first_pack).should be_valid end end it "should have an ...

1 2 3 4 5 25