RSpec is a behaviour-driven development (BDD) framework for the Ruby language.

learn more… | top users | synonyms

7
votes
3answers
39 views

How do I test `rand()` with RSpec?

I have a method that does something like this: def some_method chance = rand(4) if chance == 1 do # logic here else # another logic here end end When I use RSpec to test this ...
0
votes
0answers
5 views

How to create temporal table in rspec test

I have a model Address and one module Addressable injecting a *belongs_to :address* relation for AR classes which include this module Addressable. I want to test that class that include this module ...
0
votes
0answers
3 views

rspec DatabaseCleaner skip clean for example group metadata tag

How can I tag an example group so that the database isn't cleaned between each example, but is cleaned before and after the whole group? And untagged specs should clean the database between each ...
0
votes
1answer
23 views

Rspec test failing for POST member route

I have a polymorphic vote model which POSTs through a member route on its parent models. Each parent has a "Vote" method in the controller and im trying to test this action in my controller tests. ...
0
votes
0answers
13 views

Integration/request rspec test of my SOAP service

I have part of my rails 2 webservice application which is used as SOAP service (historical reasons, rest of app is REST). Just two operations AddLead and ShowLead, with wsdl on /soap/wsdl. I want to ...
0
votes
1answer
17 views

How to force a value inside a Capybara feature Rails spec?

I have the following: spec/features/client_logic.rb it "says unavailable slots" do expect(page).to have_content("No more client slots available.") end Which fails because in earlier let there is ...
0
votes
0answers
12 views

Set metadata for several tests across multiple files in rspec

I am writing many tests with vcr as metadata with the following syntax: vcr_options = {allow_playback_repeats: true, :record => :new_episodes, :re_record_interval => 7.days} describe 'a ...
0
votes
0answers
9 views

rails 3.2.13 deprecation warning not changed by using attr_writer

I have a rails 3.2.13 project that uses RSpec 2.13.1. There is an object that does mostly class methods and aggregate calculations, basically aggregating item_id's with list_id's. It's mostly group by ...
0
votes
1answer
18 views

Testing signup form with rspec, capybara, and stripe

I'm super new to testing, so I'm not really sure what I should be debugging here. That said, I have two different user types: Authors and Readers, subclassed on Users. They can both sign up fine in ...
0
votes
2answers
24 views

Rspec running generated tests based on hash content

Maybe i'm to blind to see right now, but i try to run a dynamic spec based on the contents of a hash. In this special case different versions of email-parts which should contain the same contents like ...
0
votes
0answers
22 views

RSpec, Rails 4, Postgres, UUID primary keys: id is null with Rake + RSpec, but is fine in RSpec or console

I'm trying to get up and running with UUID primary keys for a model with Postgres and Rails 4.0.0.rc2, but my specs are failing to create and destroy, yet MyThing.create or MyThing#destroy works fine ...
0
votes
0answers
9 views

Rspec Net::SMTPServerBusy: 454 4.7.1: Relay access denied

I'm trying to test registration emails (sent with devise), and I keep getting the error: Net::SMTPServerBusy: 454 4.7.1 <model_spec@example.com>: Relay access denied I'm running Rails 3.2.11 ...
0
votes
0answers
6 views

Is there an rspec matcher to confirm a class includes a library, module or gem?

Found this tutorial using minitest, and was wondering if there is an equivalent matcher in rspec: Interesting minitest assertion describe "default attributes" do it "must include httparty ...
0
votes
0answers
9 views

ruby webdriver opera find elements conflicts with other browser tests

When I run ruby webdriver selenium tests like finding an element, under Opera, it works. But when I run the tests with other browser driver tests like firefox and chrome, in a loop, the tests for find ...
0
votes
1answer
23 views

How to resolve a “Curl::Err::OutOfMemoryError”?

Running an rspec test with ruby bindings for libcurl (via curb) like so: it "Should be response code 200" do $var = Curl::Easy.new("some-url.com") $var.perform $var.response_code.should eq(200) ...
1
vote
2answers
17 views

How to mock a hash of string keys in rspec which comes from a webservice in the new hash notation of ruby

When i got an response from a webservice which return a hash with string keys, i have to read them like this: foo = @web_service.get_foo if foo["code"] == 200 # do something end In the rspec i ...
0
votes
0answers
10 views

Ruby Fibers and RSpec testing

I am trying to test code that interacts with a Ruby Fiber (MRI 1.9.3) and keep running into a "Dead fiber called" error. The code under test is as follows: module Publisher @fiber = nil def ...
0
votes
0answers
10 views

testing post :create with a redirect

I'm testing an create action that redirects to another model's new action when it's successful. here's the student_groups_controller: def create @student_group = ...
0
votes
1answer
17 views

rspec converting repeat block into method

I have this context in my spec file. context 'get :index' do it 'should be loaded successfully if current user is not customer' do sign_in @creative get ...
0
votes
1answer
11 views

Understanding rspec test for uniqueness — listing 6.18

I am trying to understand the test for uniqueness constraint in listing 6.18 (rails 3.2). describe "when email address is already taken" do ... before do user_with_same_email = @user.dup ...
0
votes
1answer
16 views

rspec for helper class expects module even though there is no module

I added a helper class to my rails project, Foo, at app/helpers/foo.rb. It looks like this. class Foo #....stuff end I use it in some models, and everything works fine. However, in ...
0
votes
1answer
39 views

Ruby on Rails 4.0 Tutorial chapter 3 Hell

`I have been trying to solve this problem for almost 3 hours now without success. WHen I try to run$ rails generate rspec:install` from the tutorial in chapter 3, I get this output: ...
0
votes
0answers
8 views

Factory Girl sequence acting very strangely/causing validation error

I'm trying to use FactoryGirl for some unique names, but I'm running into some difficulties. #spec/models/reservation_spec.rb require 'spec_helper' describe Reservation do before(:all) do ...
-1
votes
1answer
35 views

Ruby on Rails Tutorial section 6.3 test suite failing

Hi can I ask assistance on this. I have followed the tutorial and from 6.3 up to 6.3.4. At the end of the chapter I don't seem to be able to have green tests. I receive three errors. I have tried to ...
0
votes
0answers
29 views

Rails model includes validation but can't find the validation methods

I'm getting a very curious failure in my rspec tests, and have traced it to a model whose validation calls are being run, but whose actual validation methods appear not to be found. Here's what it ...
0
votes
2answers
19 views

why rspec test requires save and reload all time

This my example test block it 'should redirect to account portfolio items page if user is creative and its first visit is false and sign in count is 1' do @creative.first_visit = false ...
0
votes
1answer
15 views

Rspec test fails on Jenkins when open file from /tmp folder

I have such trouble with Jenkins. I'm trying to test PDF generation using RSpec. RSpec test failing, when trying to open receuntly generated PDF file. (File is saving into /tmp directory) ...
0
votes
0answers
33 views

While testing Devise with rspec, it acts like I am not logged in

I'm using Rails 3.2.13, devise 2.2.4, and rspec 2.13.2. I have a multi-tenant app in which the default scope only shows current_user's items. Everything seems to work in development, but my tests are ...
0
votes
1answer
28 views

VCR's allow_playback_repeat option does not let me reuse old cassettes

I have a test that implements VCR as follows: describe "DELETE destroy" do context 'for an Item that can be deleted' do it "destroys the requested item, assigns a flash message, and ...
0
votes
1answer
36 views

Factorygirl error using callback: Wrong Number of Arguments

Hello and thanks for reading. Here's my factory: FactoryGirl.define do factory :venue do sequence(:name) { |n| "ExampleVenue#{n}" } factory :venue_with_gig do after_create do |venue| ...
0
votes
1answer
10 views

How can I get my Rspec unit test to pretend that the output of another method is XYZ

Using Rspec, I am writing unit tests for @survey.description: class Survey < ActiveRecord::Base def description if self.question.try(:description).present? && ...
0
votes
0answers
26 views

rspec Cannot load such file after working the first time

When running through the rspec course in codeschool I keep running into the same problem. I will set up as requested and after creating zombie_spec.rb and running rspec I get the proper output listed ...
0
votes
1answer
17 views

How can I test using rails params outside controller rails

I made a module in /rails_root/lib/common/common_log.rb and included it in ApplicationController, calling it from my controller is normally end. then I did rspec. but there was an error. I can't ...
0
votes
0answers
12 views

Rails: preventing spec files from being initialized during rake tasks

I have a Rails app with a spec folder full of rspec tests. Many of them reference resources in my app, such as the 'User' resource. Everything is fine on my machine, but when I try to setup the app on ...
2
votes
1answer
49 views
+50

Rspec cannot find plugin routes

Edit 1 I created an issue for rspec-rails and made a repo so people can test it themselves. Original post I've build a plugin according to this stackoverflow answer and added a route in my engine ...
0
votes
0answers
27 views

rspec cannot find factory that is created in test

I have a Factory that creates a mock order. It has a before_create in the factory to create 3 models that are necessary for after_create callbacks when creating an order. The following factory code ...
0
votes
1answer
10 views

Error with integration testing devise actions

I'm trying to test registration through integrations, and I'm getting the error: Failure/Error: click_button "Sign up" Net::SMTPServerBusy: 454 4.7.1 <newguy@example.com>: Relay access denied ...
0
votes
0answers
13 views

Where do you place extensions to capybara module

From Alex D answer to hover on dec 24 '12, Putting module Capybara module Node class Element def hover @session.driver.browser.action.move_to(self.native).perform end ...
0
votes
3answers
29 views

RSpec - How to test extended classes

I have a model that I've extended, whats the best way testing both the original and extended class? Currently, I'm just testing the Dataset model. Is there a way of including Datasets tests within ...
0
votes
2answers
15 views

Capybara actions not affecting test database

I have an app with users who can post and also vote for other posts. In testing with Capybara, I am having trouble getting the right actions to come through. I have simplified my tests as much as ...
3
votes
1answer
23 views

How to test content_for using rspec

I"m attempting to test my application_helper's yield_for method but I don't know the best way to go about it. I've tried the code below but get the following error: Failure/Error: ...
0
votes
0answers
27 views

RSpec Not Working Across Multiple Files

I am having trouble running RSpec in 2 separate cases. The first, I have seen mentioned already in other questions, so I will only discuss the second. I have the spec files in the spec folder and the ...
0
votes
0answers
27 views

Micheal Hartl Ruby on Rails Tutorial Chapter 9.2.1

I am new to ROR and following the tutorial until chapter 9 and stuck in the spec error. Failures: 1) Authentication authorization for non-signed-in users in the Users controller submitting to the ...
0
votes
0answers
10 views

How to write an rspec test to properly check that an image has been rendered?

I'm writing tests for email for my Rails app, but I can't figure out how to test that an image has been properly included in the email. I've tried have_content, and have_tag, and also Googled ...
0
votes
0answers
12 views

how to test using associated model information

I'm testing for the presence of edit links on a settings page. I know the code works, because i can see it in my browser, but I'm not sure how to create a user with student groups for just these two ...
0
votes
1answer
12 views

How to build a Rails REST API with 2-legged OAuth?

I've been struggling for two days with OAuth and RSpec to get a properly tested RESTful API using a 2-legged OAuth authentication so I thought about posting it here and prevent more pain to happen. ...
0
votes
1answer
17 views

testing rails controlllers file

This is my create action in ParticipationConsent controller. ParticipationConsent#create def create @participation_consent = @project.participation_consent.new(params[:participation_consent]) ...
0
votes
0answers
11 views

rspec ccapybara form submit

I have a form = form_for @report do |f| = f.text_field :address, :placeholder=> "#{t("report.put_address.search")}", :class=>"input-block-level", :onkeyup =>"codeAddress()" = ...
0
votes
1answer
68 views

Rspec for helper fails after upgrade to rails 4.0.0.rc2

I'm following the rails tutorial, have finished chapter 5 and decided to upgrade from Rails 4 beta1 to the newly released rc2. And the specs now fail. ... application_helper_spec.rb:3:in `<top ...
1
vote
1answer
39 views

RSpec calls my slow test multiple times

I'm trying to test an object in RSpec. There are multiple things I want to check before and after, so I followed the examples I found around the web and ended up with something like this: describe ...

1 2 3 4 5 112