RSpec (version 2) is a Behaviour-Driven Development tool for Ruby programmers.
0
votes
1answer
21 views
Efficiently using Rspec/Capybara to fill out each phase of a form
I'm using rspec and capybara to do some testing for some form-paths we have, but it's developed in PHP, so just looking for HTML. So in order to get to the next question of the process, I have to ...
0
votes
1answer
13 views
Why aren't RSpec matchers working?
When I run this simple RSpec with any basic matcher, it doesn't work:
File: matcher_spec.rb
describe "a simple RSpec matcher" do
true.should be_true
end
The output for any matcher used looks ...
1
vote
2answers
19 views
how to pass block to RSpec “with” expectation
Tet say I have class
Class Foo < ActiveRecord::Base
def set_publication
Publication.new do |publication|
publication.owner_type = 'Foo'
publication.owner_id = 123
...
0
votes
0answers
10 views
rspec test with put :update fails
I'm using rspec for testing. My Gemfile is:
group :development do
gem 'rspec-rails', '2.12.2'
gem 'annotate', '~> 2.4.1.beta'
gem 'faker', '0.9.5', :require => false
gem 'ruby-debug19', ...
0
votes
0answers
37 views
how to test for existing htm5shiv in source code using rspec?
how can I test rails3 application for existing htm5shiv code using rspec?
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
...
0
votes
1answer
19 views
Stub pass parameter to scope
I have scope in my model which looks like:
scope :public, -> { another_scope.where(v_id: 1) }
When I stub this model in tests:
model.stub(:test).and_return(test)
it passes a value to this ...
0
votes
2answers
49 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)?"
0
votes
0answers
25 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 ...
1
vote
0answers
24 views
Change Rubymine Rspec Color
Im using Rspec for Testing, but CAN'T find how to change the grey color in to Red and Green.
Im testing so much that -especially when an error occurs- im having a hard time reading the passed and ...
0
votes
2answers
103 views
Specs2 breaks my test data, due to the way it works with iterator
AFTER GETTING COMMENTS, AND FIGURED OUT HOW IT WORKS, I STILL THINK:
Would be nice though, if specs2 provides non consumable logic, along
with consumable for iterators. Like if I don't use ...
0
votes
1answer
16 views
Understanding a piece of RSpec code in a Rail application
So in the Rpsec code I see somethings like this so I guess we are just kind of initializing variables for our test in here:
let(:base_uri) { 'http://127.0.0.1' }
let(:tenant_id) { 'tenant_id' }
...
0
votes
2answers
26 views
How can I configure RSpec to run my model tests?
No matter what I do, the only tests that run with the rake test command are those in spec/requests. Naturally, I would like to run everything in the spec directory.
I thought getting the gem and ...
0
votes
1answer
15 views
Rails 3.2 can't find my tests, thinks they are in “test” directory
I am trying to user RSpec and failing to configure MiniTest/Spork/Capybara/Guard. My Gemfile is all set and I ran the command to install RSpec.
Unfortunately, the application continues to "think" my ...
0
votes
1answer
15 views
Make RSpec print “context” descriptions before the descriptions in the “it” blocks
Just out of curiosity, is there a way to make rspec print the text from context blocks out before the text from the "it" blocks in failure messages? For example:
describe Array do
context "when ...
0
votes
0answers
14 views
Custom rspec matcher: Is a non-failing failing spec possible?
Let's assume I want to run specs that pass some portion of the time, and fail some portion. This can also be expressed as "Is there any way to actually run and output the results of a pending spec ...
1
vote
1answer
28 views
RSpec Routing Error in test but not in app
I have a route in a app I'm working on, it looks like this...
match ":place_id/:id", :controller => "companies", :action => "show", :place_id => /\S{2}/
So in my browser I can navigate ...
0
votes
1answer
30 views
RSpec Custom Redirect Matcher Always Successful
I have followed an example in the book Everyday Rails Testing with RSpec to create a custom RSpec matcher for redirecting to the login page (requires_login matcher). The code to this matcher can be ...
0
votes
1answer
66 views
Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true
I'm reading through Rails 4 in Action. I'm getting the aforementioned error while testing with Rspec and Capybara. My viewing_projects_spec.rb looks like this:
require 'spec_helper'
feature ...
0
votes
0answers
18 views
autotest.rb:221:in `autodiscover': undefined method `source_index'
newdarkmac:minecraft-overview-web newdark$ autotest
/Users/newdark/.rvm/gems/ruby-2.0.0-p0/gems/ZenTest-4.4.2/lib/autotest.rb:221:in `autodiscover': undefined method `source_index' for ...
1
vote
2answers
55 views
rails, rspec, shoulda validate_presence_of failed with setter called twice
In a simple rails app with a company model
class Company < ActiveRecord::Base
# Attributes
attr_accessible :name
validates_presence_of :name
def name=(s)
self[:name] = s.upcase
...
1
vote
2answers
49 views
Referencing file location in RSpec Rake task vs. rspec runner
I have this directory structure:
project_dir
spec
person
person_invalid_address_examples.yaml
person_spec.rb
rakefile.rb
The person_spec.rb has this piece of code in it:
...
0
votes
0answers
28 views
Testing acts_as_tenant with rspec
I have a multi-tenancy app using ascts_as_tenant. I am trying to write a spec that tests a scope. So I want to test the output of User.active.
In general this works fine with code such as the ...
1
vote
1answer
41 views
When specing a namespaced class how do I stub the parent class?
# models/event.rb
class Event < ActiveRecord::Base
# ...
end
# models/event/timeline.rb
class Event::Timeline
# ...
end
# spec/event/timeline_spec.rb
require 'spec_helper'
require ...
1
vote
0answers
31 views
Rspec request specs and session values
I am writing some request specs (rspec 2.13.1) and would like to directly access the session hash. I think this is syntax is possible in controller specs but not sure if this can can be done in ...
1
vote
0answers
25 views
RSpec2: Why does should_receive + and_return fail in this test?
This is sort of related to an earlier question I posted, but I think its perplexing enough (IMHO) to justify its own question.
In a nutshell, can anyone help explain why this works / passes:
...
0
votes
1answer
45 views
Rails 3 Factory_Girl Factory not registered
I have to admit that I am new to testing and so am trying out my first few Rspec with Factory Girl tests. All is going well until I try and use factory girl.
My config is as follows
...
0
votes
0answers
47 views
RSpec 2 - How to test ActiveRecord Finder methods?
I am moving to rspec2 and having a lot of problems, here is a simple example of an rspec 1 test that now will not work:
Category.should_receive(:all).and_return([category_a, category_b])
gives the ...
1
vote
1answer
55 views
How to convert Rails 2 / RSpec test to Rails 3 / RSpec 2 syntax?
I am upgrading a rails 2 app to rails 3 & not sure how to "upgrade" the following line from one of my tests
Category.should_receive(:find).with(:all,:conditions => {:parent_id => ...
0
votes
0answers
13 views
What is the standard way to write specs for cancan abilties in rspec?
I have a rails project which has 10 different roles. I am using cancan to manage their abilities. I know two ways to do that:
1) Shared examples and Shared groups
shared_examples "user should be ...
0
votes
0answers
55 views
Why rails engine (3.2.12) wants to mass_assign field which is not on the form new?
In our rails 3.2.12 engine, there is a model misc_definition. Here is a line in the misc_definition model:
attr_accessible :brief_note, :for_which, :name, :ranking_order, :as => :role_new
The ...
1
vote
1answer
49 views
What RSpec hook shall be used to perform clean up task after all tests are finished?
I have this situation in my project - I have a Singleton class representing browser used during the test:
class Browser
include Singleton
def initialize
@browser = Watir::Browser.new :ff
...
0
votes
2answers
34 views
How to merge matchers in rspec?
This is my specs:
it "should convert doc successfully" do
@response = SharpOffice::Office.process(File.expand_path("spec/fixture/test.doc"))
@response[:status].should == 'ok'
...
2
votes
1answer
55 views
How can I mock super in ruby using rspec?
I am extending an existing library by creating a child class which extends to the library class.
In the child class, I was able to test most of functionality in initialize method, but was not able ...
1
vote
2answers
29 views
Is there a rspec helper to test a validate on update?
I am using the following validation
"validates_presense_of :column, :on => :update"
Is there a helper provided by rspec to test the above?
0
votes
0answers
47 views
Equivalent construction for old rspec
I'm not familiar with old version of rspec, now I have to use rspec 1.3.2
I have construction that is built for newest rspec (~> 2.11) which doesn't work on old one:
...
0
votes
0answers
17 views
DRY tests using rspec and rails using shared_examples_for
I have a set of tests within a shared_examples_for.
The tests apply to a few pages but for the different pages the setup (let / before) will need to be different.
Can someone offer guidance on how I ...
2
votes
1answer
67 views
Is there any complete real life Rails project with RSpec?
I'm learning RSpec for a while and reading some articles, books and other resources. But I wonder if is there any complete real life Rails project, that using RSpec, with source codes available to ...
0
votes
0answers
40 views
Any override for rspec errors on BigDecimal?
Big Decimal's to_s prints as scientific notation.
rspec uses the to_s for error messages.
How could rspec be monkey-patched so that it prints errors for BigDecimal using a more conventional ...
0
votes
0answers
107 views
Rspec + Url Helpers + custom_helper_spec
I'm trying to test a helper and I'm getting the following error:
Admins::ProductsHelper
#product_post_permission
when product can do post
creates cannot post link with green button ...
0
votes
0answers
38 views
How can I skip RSpec mailer specs when generating a mailer?
I know I am missing a simple documentation page, or google result, but my attempts at locating the right one have failed me :(
I want to generate a mailer, using Rails generate mailer, and not ...
0
votes
0answers
25 views
Equivalent of RSpec 2's `example` variable (available in `config.after` calls) in RSpec 1.3
In RSpec 2 I can define a config.after call and in it, use the example local variable to find out about the example/spec/test that just ran. For example, I can check to see if example.exception is ...
0
votes
1answer
51 views
Rspec + Devise + BaseController
I'm creating a base controller for the admin section of a project. All controllers whitin the admin section will inherit from it.
#app/controllers/admins/base_controller.rb
class ...
1
vote
1answer
34 views
In RSpec, what's the difference between before(:suite) and before(:all)?
The before and after hook documentation on Relish only shows that before(:suite) is called prior to before(:all).
When should I use one over the other?
1
vote
1answer
89 views
Testing an after_commit hook in Rails 4 with transactional fixtures enabled
I've got a Rails 4 app and am using transactional fixtures, and want my after_commit hooks to trigger while running my integration specs.
Of course, no commits actually happens when you use ...
1
vote
0answers
41 views
Can't create users in rails when using authlogic because of cookies
So, I have a standard rails 3 app with authlogic. If I'm not in the browser (in the console or in the test environment), I can't create user models.
For example:
I have this code either in a rspec ...
0
votes
1answer
45 views
Is stubbing/mocking necessary with 3rd party api
I have an action in my controller that connects to a third party api and does some work. If the code succeeds then my user is saved. If the third party api fails, then the user is not saved.
def ...
0
votes
2answers
37 views
Sharing factories across rspec specs in a DRY way
So I have some model specs like this:
describe 'something' do
it 'another thing' do
a_model = FactoryGirl.create(:a_model)
another = FactoryGirl.create(:another)
#some code using ...
0
votes
0answers
59 views
Capybara and Rspec are not showing 404 errors caused by AJAX calls
I'm using Capybara 2.0.2 with Poltergeist 1.1.0, Rspec 2.12.0 and Spin 0.6.0.
My problem is that errors like 404 errors are not shown in the rspec output. Since I am using Backbone.js most of the ...
0
votes
2answers
144 views
How to create test objects with nested attributes with FactoryGirl in Ruby on Rails?
I have an Invoice model that may contain a number of Items as well:
class Invoice < ActiveRecord::Base
attr_accessible :number, :date, :recipient, :items_attributes
belongs_to :user
...
0
votes
2answers
136 views
How to test after_destroy callback in Rails and RSpec?
I have this User class in Ruby on Rails:
class User < ActiveRecord::Base
after_destroy :ensure_an_admin_remains
private
def ensure_an_admin_remains
if User.where("admin = ?", ...


