0
votes
0answers
23 views

setting request.fullpath in rspec helper test

The only thing that seems to work is doing something like this let(:request){ stub('request', :fullpath => '/path/to/place?arg=value') } it 'blah blah' do ... end The problem for me, is that I ...
1
vote
1answer
27 views

Obtaining file path of current spec file with shared examples

I want to ask what is the acceptable pattern for obtaining the file path of the current spec file and others in the call stack. For example, I have a few view specs that share a it_should_behave_like ...
0
votes
2answers
35 views

How do I “expect” before block to change something in rspec?

I have a test suite structured this way: let(:cat) { create :blue_russian_cat } subject { cat } context "empty bowl" do let!(:bowl) { create(:big_bowl, amount: 0) } before { meow } ...
0
votes
2answers
29 views

Need to loop through an array in rspec, test not running

I have a test that needs to loop through 5 elements in an array then verify that all the elements are displayed as list items on the page. I have the code below, it's the last test with the comment ...
0
votes
1answer
32 views

Integration test for a method that redirects to an external website

This method redirects to an external website. How do I test this behaviour? I know that the method works correctly because I tested in the browser, but I can't get the test to pass. def create ...
0
votes
1answer
22 views

Capybara 2.0 and rspec-rails — helpers don't work in spec/features

I'm trying to use a method from a helper module, but rspec doesn't seem to recognize helpers for tests under spec/features. Note that the only change to spec_helper.rb was adding require ...
4
votes
2answers
67 views

Confused about how to use mock and stubs

I have a class and a spec. class Store def activate(product_klass, product_id) product = product_klass.find(product_id) if product.inactive? product.update_attribute :active, true ...
2
votes
1answer
42 views

Are *all* specs for an engine expected to live in the dummy Rails app?

I'm using RSpec to test some engine models. My preference would be to test the parts that are independent from the (dummy) app outside of the app. I'd prefer to have non-app tests live at the top ...
1
vote
0answers
39 views
+50

Ruby EventMachine testing

My first question concerning Ruby. I'm trying to test EventMachine interaction inside the Reactor loop - I guess it could be classified as "functional" testing. Say I have two classes - a server and ...
2
votes
1answer
26 views

Zeus fails when testing with Rspec

When I run this command: rspec spec/controllers/messages_controller_spec.rb I get this: Finished in 0.54446 seconds 2 examples, 0 failures Randomized with seed 6226 It's good. ...
0
votes
1answer
15 views

rspec selenium-webdriver set proxy

I'm trying to run a series of behavioural tests against a web app using selenium on a server that is behind a proxy and I need the tests to run in headless mode As a prerequisite I've install Firefox ...
0
votes
1answer
51 views

I just can't get my valid password test to pass

I'm trying to get my valid password test to pass. When I run it it seems that the password_digest hash is different. I don't know what to do to get them to match. I was mostly using the book "Ruby on ...
0
votes
2answers
43 views

rspec password test failing

I've been racking my brain trying to figure this out. I'm not sure why, but for some reason my password digest hash isn't matching up. When I run the test I get this error: expected: password_digest: ...
1
vote
1answer
39 views

facing little trouble while executing test using rspec

whenever i run this command spec spec/controllers/sample_controller_spec.rb i get the following error ...
0
votes
1answer
27 views

Spring wil not start

I am receiving the following error when trying to start spring (https://github.com/jonleighton/spring). I am running it in a vagrant box with Ubuntu 12.04 LTS 12.04. ...
1
vote
1answer
50 views

RSpec - The passwords in my test are not matching up

I wrote up a test that should describe the case where @user and found_user should be the same via password match. This also describes when they're different. I'm not using devise or anything, but ...
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
3answers
41 views

Testing private method in Ruby (rspec) [duplicate]

Yes, I know, that testing private methods it's not a good idea (and I read this thread - http://www.ruby-forum.com/topic/197346 - and some others) But how can I test the following code? I use ...
1
vote
1answer
21 views

uninitialized constant RSpec with spork

I'm trying to get spork working with a rails 2.3.18 app Here is part of my gemfile showing Rspec versions: gem "rails", "2.3.18" gem "haml", "3.1.8" gem "twitter", :git => ...
1
vote
2answers
19 views

How to test a mixed-in class method is being called with RSpec and Mocha?

I have a module: module MyModule def do_something # ... end end used by a class as follows: class MyCommand extend MyModule def self.execute # ... do_something end end How ...
0
votes
2answers
36 views

Mocking User Interface with RSpec Ruby

I've been looking on google for an answer but I can't seem to find the right answer. Basically I want to test out different User Interfaces(Console) in my engine. I was told to use Mock Classes, ...
1
vote
0answers
27 views

RSpec mock passed to Array() causes error in Ruby 1.9.2

# expected Array(Object.new) # => [Object.new] Array([Object.new]) # => [Object.new] # but when using an rspec mock it = RSpec::Mocks::Mock.new it.respond_to?(:to_a) # => false Array(it) # ...
1
vote
1answer
31 views

Chain should_receive Possible?

Is there a more terse way to write this rspec code? mailer = double AdminMailer.should_receive(:request_failed).with(@request).and_return(mailer) mailer.should_receive(:deliver) I'm envisioning ...
2
votes
1answer
34 views

RSpec 'change': Braces or brackets?

I am following Michael Hartl's Rails Tutorial and there is an RSpec testing code snippet: expect do click_button 'Follow' end.to change(user.followed_users, :count).by(1)` According to the RSpec ...
0
votes
3answers
50 views

Using specific VCR cassette based on request

Situation: testing a rails application using Rspec, FactoryGirl and VCR. Every time a User is created, an associated Stripe customer is created through Stripe's API. While testing, it doesn't really ...
0
votes
1answer
19 views

rspec - how to have examples without both 'describe' and 'it'

Given the following working code: require 'rspec' require_relative 'dec_to_hex' describe "Should convert 20 to 32" do it "should convert correctly" do converter("20").should == 32 end end ...
0
votes
0answers
16 views

Evergreen & Capybara 2

we're using evergreen to integrate our javascript tests into rspec, and we're using the browser frontend a lot. Now we upgraded to Capybara 2 and noticed, that evergreen needs Capybara ~> 1.0. Is ...
0
votes
1answer
37 views

How do I mock a response of a controller that redirects to an external API?

My orders_controller needs to forward an order to a payment gateway. It's making my tests fail: No route matches [GET] "/v2/checkout/payment.html" That's is the URL that the PaymentGateway object ...
0
votes
0answers
27 views

Webrick ssl server: dots and plus signs in log

I'm testing a webrick server in RSpec, and was wondering, why it always prints out sth like ...............................................++++++ ..............++++++ to my terminal. I extracted ...
0
votes
1answer
22 views

Using webmock to stub partial headers

I am creating tests using webmock. I want to test that a particular header field is set, but I don't care about other header fields. When I use this: stub_request(:get, "https://myhost.com/api"). ...
4
votes
4answers
179 views

stack level too deep (SystemStackError) when using both rspec and cucumber with ruby and rails

This is a question about what debugging strategy I should use when encountering a stack level too deep (SystemStackError) using Ruby and Rails. I am seeing these errors when using either rspec or ...
0
votes
2answers
52 views

Testing STDOUT output in Rspec

I am trying to build a spec for this statement. It is easy with 'puts' print "'#{@file}' doesn't exist: Create Empty File (y/n)?"
1
vote
0answers
17 views

Test failure gives incomplete error message when using short syntax

There are 2 syntaxes (afaik) for writing tests with RSpec: The classic/old way: describe "when user_id is not present" do before { @micropost.user_id = nil } it "should not be valid" do ...
1
vote
1answer
34 views

Best practice for FactoryGirl with deep association chains?

I am modeling a complex purchasing workflow in Rails that converts Requisitions to Orders. I'm using FactoryGirl to do my testing and all is well, until I try to test the OrderLineItem, which depends ...
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 ...
1
vote
0answers
43 views

Rails rspec issues (cannot load such file --b (LoadError))

I'm following Hartl's guide to Ruby on Rails, and I'm currently trying to set up "guard" and "spork" for automating "rspec" testing. When I try to run bundle exec rspec ...
1
vote
1answer
72 views

rspec require spec_helper in .rspec file

I've noticed that projects such as bundler do a require spec_helper in each spec file I've also noticed that rspec takes the option --require, which allows you to require a file when rspec is ...
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 ...
1
vote
1answer
32 views

Testing if an instance of a class receives a message when a class method that sends the message to all instances is called

Though correct, the title needs some explanation :) I have this class: class Character include DataMapper::Resource def self.tick_all all.collect &:tick end def tick # do stuff ...
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 ...
-1
votes
1answer
50 views

rails tutorial 2nd edition. chapter 6.3.4

I hope someone can help. I am going through Michael Hartl's rails tutorial book and am stuck on chapter 6.3.4. I am trying to get all the tests to validate and I keep getting several errors. I have ...
0
votes
1answer
31 views

expected valid? to return true, got false

I have below spec from rails tutorial by Michael Hartl and it is working fine up to 6.2.3 Length validation require 'spec_helper' describe User do before { @user = User.new(name: "Example User", ...
1
vote
1answer
21 views

Using send to call a method in a helper class

I am not sure why the code below is done this way, can someone take a look and see what is going on? For example why in the send method below we are not sending the symbol? or Why we are not calling ...
0
votes
0answers
33 views

NoMethodError: undefined method `deep_symbolize_keys' for “UTF-8”:String

I'm seeing this error NoMethodError: undefined method 'deep_symbolize_keys' for "UTF-8":String when running my spec tests for almost all of them. I'm not calling that method anywhere in my code. ...
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: ...
0
votes
2answers
34 views

How to stub STDIN.noecho(&:gets) in RSpec

I have a method auth and I'd like to stub STDIN. def auth ... @pass = STDIN.noecho(&:gets).chomp ... end I've tried STDIN.stub(:noecho).and_yield('some_pass'), and received NoMethodError: ...
0
votes
1answer
34 views

What is a good way to store AWS credentials for test environment?

What is a good way to save AWS credentials for a testing environment? ENV vars work well in deployments, but I don't want to set up the ENV to run tests, and don't want to store credentials in the ...
-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
51 views

How to mock aws-sdk gem?

I have some code that uploads a file to Amazon S3, using the aws-sdk gem. Apparently it does an HTTP put to upload the file. Is there a good way to mock this functionality of the aws-sdk gem? I ...
0
votes
1answer
37 views

ActiveSupport::TimeZone not recognized in Rspec tests

I am using ActiveSupport::TimeZone to set the time zone on a location based on the zip code. def set_time_zone self.time_zone = ActiveSupport::TimeZone.find_by_zipcode(self.zip) end This works ...

1 2 3 4 5 37