-1
votes
0answers
32 views

MiniTest not displaying output

I'm playing around with MiniTest reporters to see if I can't get some different output, but I'm not seeing output of any kind, with or without my reporter. Here's the output I'm seeing: Run options: ...
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
0answers
25 views

rspec controller testing - has_many :through :source - RuntimeError: Called id for nil

Please help me. I try to run the following controller test but I cannot figure out why it returns following error: Failure/Error: get :index, user_id: controller.current_user.id RuntimeError: ...
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
20 views

Updated to Capybara 2.1.0.rc, now having trouble with current_path in my feature specs

So it seems like I've used current_path many times in request specs. However, Capybara now requires specs to be in the features directory in order to use the Capybara DSL (page & visit) # ...
0
votes
1answer
26 views

Rspec model test with Fabricator & let(…) format. Console shows no data in databse but there is.

I don't understand why it returns empty when I type "Video.all" first time in console after it did not pass the test, but if I specify them like "video" & "video2", and then I type "Video.all" it ...
0
votes
1answer
33 views

Controller testing Show page with Rspec, it gives an error nil & and render empty page

I'm new to TDD on Rails, and I'm trying to test videos_controller with the book "Everyday Rails Testing with Rails" for simple show page but it gives me error 'nil' & render empty, as follows. But ...
1
vote
2answers
81 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: ...
-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
24 views

launchy gem terminates tests

I've got a simple spec describe "Workers" do describe "user attempts to view workers" do context "admin logged in" do end context "non-logged in user" do before do visit ...
-1
votes
2answers
47 views

DB Errors with Rails test

I'm trying to learn Rails, and running into a bit of a problem I don't understand. I started with Hartl's book and looking at this error message, it looks like something to do with what I was doing ...
1
vote
0answers
31 views

undefined method `use_transactional_fixtures

I was following a long with this tutorial on how to test rails apps and I came across this error: /home/***/***/***/spec/spec_helper.rb:27:in `block in <top (required)>': undefined method ...
3
votes
3answers
71 views

Rspec model tests for average rating method

I'm trying to write tests for the following method: def average_rating reviews = self.reviews review_sum = reviews.inject(0) { |sum, review| sum += review.rating } avg_rating = (review_sum / ...
0
votes
1answer
44 views

How to test a skinny controller without retesting the fat model?

Before I start, I'm using rails with rspec, shoulda-matchers, and factorygirl to ease testing, so if those libraries contain something helpful to solve the problem below, please let me know. I was ...
1
vote
3answers
72 views

Rspec test failing miserably

So I've seen several questions on here somewhat similar to mine, but not quite close enough to help me figure out what my issue is...so any help on what i'm doing wrong would be appreciated: (I'm ...
0
votes
1answer
23 views

How do I set a variable in my rspec test so that it can be used by the controller for a query?

I have a variable in my sessions controller. session[:facebook_profile_id] = @user_info['id'] @user_info['id'] is an int. Example: 123 I then use that session variable in my main controller to get ...
0
votes
2answers
72 views

Rails Rspec error - undefined method `visit'

So I'm new to TDD & I'm throwing some Rspec errors here on my tests...Basically after running bundle exec rspec spec, I get an undefined method 'visit' error on some of my specs. Any help on how ...
0
votes
1answer
37 views

Rspec and testing instance methods

Here is my rspec file: require 'spec_helper' describe Classroom, focus: true do describe "associations" do it { should belong_to(:user) } end describe "validations" do it { should ...
0
votes
1answer
125 views

RSpec undefined method 'should'

I am getting an undefined method for 'should' in my controller tests and cannot figure out why. I spent some time on google and stack overflow, but am stuck. Any help? Spec Helper: require ...
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
0answers
17 views

spork-testunit and guard-test do not post notifications

I just started a new job and am trying to get our company set up for TDD. I've enabled guard and spork, but unfortunately, it seems that notifications do not work for Test::Unit when run using a drb. ...
0
votes
1answer
36 views

Doubts on correct BDD approach in Rails

I am doing BDD in the following way: -> Creating Cucumber scenarios (for Integrational tests) -> Create the needed Model Rspe Unit tests --> Back to the Cucumber scenarios. However, I ...
0
votes
1answer
16 views

m[1][/_pages/] In Guardfile

I was looking over Michael Hartl's online book and came across this regex line for his Guardfile. watch(%r{^app/controllers/(.+)_(controller)\.rb$}) do |m| ...
0
votes
1answer
46 views

Jasmine specs generating different random numbers than on execution

I have a Jasmine test that is failing because a random number is being generated and this random value is different for execution and spec. fetch: function(options) { if(typeof options === ...
0
votes
1answer
74 views

How do I configure Guard to skip the Pry prompt and just run my changed test?

I am working on an in-house Rails application running Rails (2.3.18) on Ruby (1.8.7) with tests written in Test::Unit (2.5.4) and Shoulda (2.10.2) Guard (1.6.2) runs all the tests on startup via ...
0
votes
2answers
46 views

webmock and crack 0.3.2 issue

I installed the webmock gem but my rspec tests wouldn't work anymore but instead this error: (I use guard for autotesting) ...
0
votes
6answers
121 views

Should I use TDD and BDD if my project is changing fast? [closed]

I have my own little project I am creating using RoR, I plan it to have small-medium load. With no doubt I started with BDD and TDD (Cucumber and RSpec to be exact, but I am also experienced with ...
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
2answers
90 views

Can't figure out what's causing my tests to fail

I'm new to rails and I built an app without doing TDD but am now going back and trying to pass all the tests. I've passed most of them but there are a few left relating to the same issue that I can't ...
0
votes
1answer
83 views

FactoryGirl set attribute with association

I have a Note object attached to a Course, I want to randomly set the @note.number to rand(@note.course.sections) in FactoryGirl. I tried: factory :note do association :course number { ...
0
votes
1answer
123 views

Capybara testing javascript failure to refresh .count

Using Capybara testing javascript alert in rspec. Why expect{ click_link "Cancel my account" page.driver.browser.switch_to.alert.accept }.to change(User, :count).by(-1) fails. Yet puts ...
0
votes
1answer
248 views

Missing template relationships/create, application/create with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :builder, :coffee]}

I was having problem with railstutorial.org on chapter 11 with Rspec. The test was not pass. RS-MBP:sample_app rsoutar$ bundle exec rspec spec/ No DRb server is running. Running in local process ...
1
vote
1answer
68 views

How to organize rails integration/feature specs

For the controllers, I tested each action like: describe PostsController do describe "GET #new" describe "GET #edit" describe "DELETE #destroy" ... How do I organize my integration/feature ...
0
votes
1answer
62 views

Javascript TDD/BDD uiser interface. How to test a form

I am trying really hard to find a way of testing a javascript user interface. That is a fancy form, with a few fields that are locked depending on checkbox clicks, with ajax population of selects, and ...
1
vote
2answers
77 views

In RSpec - how can I test if one attribute is less (or more) than another

In my app I want to have a Car model. It will have two fields among others: date_from and date_till (to specify a period of time someone was using it). And I want the model to validate that ...
0
votes
1answer
85 views

Is there a point in using Unit Test, Rspec, Cucumber and Capybara?

I am beginning at Ruby and i read about different test methods/frameworks: unit test (MiniTest::unit now with the latest Ruby version), Rspec, Cucumber and Capybara. But I don't fully grasp what's the ...
-2
votes
1answer
61 views

How to test these ActiveRecord models? [closed]

I'm trying to learn to write tests in Ruby (following the testing culture the language has). However, I'm quite confused and that's why I'm looking for an example here. Here is my model user.rb: ...
0
votes
0answers
24 views

Rails Steak helpers not accessible

I´ve just started using Steak. But whenever i call a helper method in a scenario, i´m getting a NameError: undefined local variable or method. No matter if it´s inside NavigationHelpers or ...
0
votes
0answers
35 views

How do I reconcile TDD when the production environment differs significantly?

I'm a rails developer. I test locally and deploy to Heroku. Often I have a stituation that can't really be tested locally. For example the HireFire gem that dynamically spins up workers when neeed. ...
0
votes
1answer
63 views

Can I test a javascript file inside my public folder with jasminerice and rails 3.2.8?

I am having a little bit of trouble testing a javascript file inside my rails application. I have this file inside my public directory because I want to serve it statically. I am currently using ...
0
votes
1answer
39 views

Why does Capybara throw an error when the page works?

I have a very simple capybara script for a custom sign-up form using devise: scenario "allow me to register and should take me to the new partner page" do visit '/registrations/become_partner' ...
0
votes
1answer
133 views

session hash does not persist on rspec tests

In my people_controller_spec.rb I have before(:each) do @office = FactoryGirl.create(:office) @organization = FactoryGirl.create(:organization) @user = FactoryGirl.create(:user, ...
1
vote
1answer
74 views

Rails model fails format validation, regex

I'm setting up a model for recordings with the following constraints class Recording < ActiveRecord::Base attr_accessible :agent_id, :confirmation, :filepath, :phone, :call_queue_id, :date ...
0
votes
1answer
73 views

How to check if response is a file?

How do I test if the response of a controller action in Rails is a file? (rack-test or capybara) Should I use unit tests to do it? The scenario is simple: I have to test if the exported users from ...
0
votes
2answers
107 views

How do I test w/rspec Request Spec

I'm trying to write an rspec functional/request to test the fact that after filling in a form to create a record in the "VIN" model, the user is redirected to the edit_path for the record that was ...
2
votes
2answers
680 views

AngularJS and Rails - e2e testacular testing . How to login user to test angular pages?

Here is the issue I have faced. There is the code I'm working on. Code is mostly typical MVC written in Rails with Haml view files. One part of the app is utilizing AngularJS to do all cool MVC in ...
0
votes
1answer
131 views

How to use regex in a Capybara finder?

The following works great: find "img[src='https://www.example.com/image']" But I want to also find find "img[src='https://www.example.com/image?foo=bar']" How to use a regex within the attribute ...
1
vote
1answer
37 views

Rspec - test redirection on unknown db record in production environment

I am developing a Rails 3.2 application and want the user to be redirect to a custom error page at errors#index when he tries to find a non-existing db record. This is my code to do this inside the ...
1
vote
0answers
33 views

creating a feature spec to test a form that has a file upload field

how are people handling this situation: I have a form that takes an image. How do I verify whether or not the image was accepted? Or is this not something you should verify at this level of testing? ...
0
votes
0answers
104 views

Can't get RSPEC test to pass Failure/Error: get static_pages_index_path

I updated my static_pages_spec.rb file to read: require 'spec_helper' describe "Stagic pages" do describe "Home page" do it "should have the content 'Sample App' " do visit ...

1 2 3 4 5 6