Tagged Questions
2
votes
1answer
43 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
1answer
17 views
Rails: Naming Many Variables with FactoryGirl
I'm using FactoryGirl with my Rspec testings and I need to create many users, but I also need to be able to name them so I can reference them. However, when I'm naming them I keep getting an error.
...
0
votes
1answer
23 views
Setting a child attribute from parent in FactoryGirl
How do you set a dependent attribute that depends on in FactoryGirl?
FactoryGirl.define do
factory :line_item do
quantity 1
price 30 # I want price to come from the product association: ...
1
vote
1answer
36 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 ...
0
votes
1answer
44 views
Factory Girl with polymorphic has_many association
I'm trying to set up a factorygirl has_many association with a polmorphic association, using the new syntax. Here is the code. It isn't properly building the address, and associating it with the site.
...
1
vote
1answer
50 views
FactoryGirl override attribute of associated object
This is probably silly simple but I can't find an example anywhere.
I have two factories:
FactoryGirl.define do
factory :profile do
user
title "director"
bio "I am very good at ...
3
votes
3answers
73 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 / ...
1
vote
1answer
38 views
Mongoid find not working?
I have Group and User models. User belongs to Group, Group has many Users.
I'm writing an integration test with Rspec: When a Group has at least one User, the Group is not deleted.
Factory:
...
0
votes
0answers
21 views
Error Binary data for string in “crypted_password” column when working with factory girl rails
When working with FactoryGirl in my development machine, I started to get some:
Binary data inserted for `string` type on column `crypted_password`
since just shortly.
It seems to be an encoding ...
1
vote
1answer
30 views
Nested models testing : Could not find table '*' Error.
I'm trying to run RSpec against a working large codebase (I'm relatively new to Rails), but it fails on this point; My bet that it has something to do with the FactoryGirl definitions.
Overview of ...
0
votes
1answer
64 views
Rails instance variable created with FactoryGirl not defined in view
I have a view that displays either a welcome message or a video, depending on whether @video is defined. I am trying to write some tests for the view, but I can't seem to figure out how to cover the ...
1
vote
1answer
75 views
Get belongs_to association in FactoryGirl to work right
I'm trying to get associations in FactoryGirl to work, and they just ... don't. I've basically got this:
class Foo
include Mongoid::Document
belongs_to :bar
end
class Bar
include ...
0
votes
1answer
86 views
Can not determine issue in my factories with factory girl in rspec
I have create couple of factories and created some examples for rspec for one of my projects. I have got everything working on my local. Even, my specs are green on local for both ruby version: 1.9.2 ...
0
votes
0answers
39 views
Mapping FactoryGirl associations by parsing code as blocks
I've been working on debugging a problem in our testing suite that I think has to do with a chain of FactoryGirl associations. My idea is that we have a chain of associations that ends up creating a ...
1
vote
2answers
145 views
How to build factory girl association?
I'm having troubles building association. I have my models defined like this:
class Conversation
belongs_to :user1
belongs_to :user2
has_many :messages
end
and I've defined these factories
...
5
votes
1answer
230 views
Zeus + FactoryGirl::Syntax::Methods. undefined method `create'
I have
RSpec.configure do |config|
config.include FactoryGirl::Syntax::Methods
end
which properly work with simple rspec spec/model/user_spec.rb (allows me to use create(:user), not ...
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
221 views
Authlogic/Rspec/Rails 3.2: UserSession.find returns nil in ApplicationController
Relevant models:
class User < ActiveRecord::Base
acts_as_authentic
end
class UserSession < Authlogic::Session::Base
end
ApplicationController:
class ApplicationController < ...
0
votes
0answers
60 views
uninitialized constant FactoryGirl::Evaluation::Observable
I'm trying to use factory_girl 4.2.0 with rspec 2.13.0. First I add 'factory_girl' to my Gemfile and bundle update:
Using aasm (3.0.16)
Using i18n (0.6.4)
Using multi_json (1.6.1)
Using ...
0
votes
0answers
92 views
Rails: Why do my FactoryGirl fixtures successfully create in the rails console but fail during rake test?
Assertions in my tests are erring, but the commands that they're erring on are running successfully in the rails console.
I am using Test::Unit tests with capybara, mocha, factory_girl_rails, ...
0
votes
1answer
122 views
Factory Girl - overriding attributes of belongs_to object
I'm trying to create a Meeting object, and while doing so override the attribute of the Course object which the Meeting object belongs_to:
Here are my models:
class Course < ActiveRecord::Base
...
0
votes
1answer
141 views
Rails Rspec/FactoryGirl not passing correct params to controller
I am trying to write an Rspec test to test one of my controllers in Rails but I am having a problem getting the correct params hash.
My create method in my Activities Controller looks like this(The ...
1
vote
1answer
155 views
why is before :save callback hook not getting called from FactoryGirl.create()?
This simple example uses DataMapper's before :save callback (aka hook) to increment callback_count. callback_count is initialized to 0 and should be set to 1 by the callback.
This callback is ...
0
votes
2answers
59 views
How to send params with FactoryGirl (as opposed to manually sending the params as a hash)?
I have the following rspec test that works:
it "redirects to the created api_key" do
post :create, :api_key => {:api_identifier => "asdfadsf", :verification_code =>
"12345"}
...
0
votes
1answer
81 views
RSpec - How to test a database view?
I have a class that is backing a database view. I am using FactoryGirl to try and test this so I go through the normal steps of creating a user instance like so:
before(:each) do
@user = ...
0
votes
1answer
178 views
Uninitialized constant (NameError) when using FactoryGirl in module
Here's the error I'm getting when I try to run my tests with RSpec:
C:/Ruby193/lib/ruby/gems/1.9.1/gems/activesupport-3.2.11/lib/active_support/infl
ector/methods.rb:230:in `block in constantize': ...
0
votes
1answer
81 views
FactoryGirl attribute value not populated on ActiveRecord class instance
I have a FactoryGirl factory defining some default values for an ActiveRecord::Base class. All of the values except one are making it to the instantiated class except for one.
Here is my factory:
...
0
votes
2answers
36 views
Factory - field with sequence as fallback
Question: How can i use for one field both sequence and transient attribute?
Background: I have factory, which has a name. The name is sequence to keep it unique. However in few specs i need it set ...
0
votes
1answer
153 views
RSpec/FactoryGirl - MongoID embedded document doesn't persist
Having the following factory :
FactoryGirl.define do
factory :user do
provider "github"
sequence(:uid) {|n| "111111#{n}"}
sequence(:name) {|n| "name#{n}"}
sequence(:email) {|n| ...
3
votes
2answers
93 views
rspec expects doesn't do what I expect
So I have two specs which I thought are testing the same thing yet one fails while the other one passes. I'm working on an app which has a recurring schedule. If a user creates an trip that recurs it ...
0
votes
0answers
65 views
Issue with migrating tests from SQLite3 to PostgreSQL
Have two computers, with same app on both.
One runs SQLite3, other one runs PostgreSQL.
All Cucumber tests are passing on SQLite3 PC.
But Postgres PC fails when it comes to relations between models.
...
1
vote
2answers
58 views
FactoryGirl with associations
I have 2 models, Product and Category.
Product has category_id attribute. So, Product belongs to Category, and Category has many Products.
<!-- language: rb -->
class Product < ...
1
vote
1answer
58 views
Using associations in hooks with FactoryGirl
I'm in a hard situation with FactoryGirl that maybe you can help me to solve. The code is like this:
class Bet
belongs_to :market
belongs_to :option
has_one :market, :through => :option
...
0
votes
2answers
78 views
Cloning a model in Factory Girl?
I want to use Factory Girl to generate a large collection of models, each of which only differ by one or two attributes.
Is there a way to have a factory accept an instance of a model? Ideally, I'd ...
0
votes
1answer
61 views
Understanding how ActiveRecord exists? works when building an association
I have two models that are associated via a has_many relationship. E.g.
class Newspaper < ActiveRecord::Base
has_many :articles
end
class Article < ActiveRecord::Base
belongs_to :newspaper
...
0
votes
3answers
912 views
FactoryGirl — Factory not registered
New to Ruby, sorry if this is obvious. I've already looked here and here. I'm loading factory_girl_rails fine.
I figured it must be a syntax error, but after an hour of head scratching really haven't ...
0
votes
1answer
198 views
ActiveRecord before_validation callback not fired when called from RSpec example
I have read most of the answers pertaining to similar issues but haven't found a solution yet. The code is as follows:
Setup
class Person < ActiveRecord::Base
# Other inconsequential code
# ...
1
vote
0answers
428 views
undefined method “to_i” on FactoryGirl
After upgrading my rails to 3.11, all my factories are broken.
Failure/Error: effective = Factory.build(:effective, :document_type
=> DocumentType::RG, NoMethodError: undefined method to_i' ...
0
votes
1answer
26 views
How to create a sequence without a model with FactoryGirl?
I want to create a sequence without creating a model Foo:
let( :foo_id ){ sequence...? }
The following code works, but creates a model Foo.
Factory:
FactoryGirl.define do
sequence :id do |i|
...
1
vote
1answer
85 views
Unable to update attributes of association objects using factory girl and rspec
So, I have a factory that produces a user with a couple of associations. Instead of creating a new factory for each case, I'd like to create the object and modify some attributes of the association ...
3
votes
2answers
82 views
@users variable empty. forget to pass the collection object for will_paginate?
Problem localhost:3000/users/ won't display
I enter humbly as I am trying to make it through the rails tutorial for the first time. I am in chapter 10 and I have been trouble shooting this for 5 ...
1
vote
1answer
54 views
FactoryGirl and Rails 3.2 error
I have this in factories.rb:
FactoryGirl.create :user do |user|
user.name "test"
user.age "40"
end
and this in my test file:
require 'spec_helper'
describe "FirstTests" do
it "creates a ...
0
votes
0answers
41 views
How can I load factories in plugins and avoid duplicate definition errors
I'm having a problem loading factory_girl factories. I have an application which has several plugins. I've written the code for both - the plugins are 'optional extras' that can be included in the ...
0
votes
1answer
87 views
Rspec validation test fails on 'put' update
I have this factory: @host = FactoryGirl.create(:host)
This test passes:
it 'should update and redirect to the show page' do
new_attr = ...
0
votes
1answer
65 views
How can I use Factory Girl to generate 'dummy images'?
I want to generate a ton of dummy data - part of that data is images of various sizes. From avatars to banners to other image sizes in between.
How do I go about doing that dynamically, in my Rails 3 ...
0
votes
1answer
60 views
Can I use Factory Girl or some related gem without using a testing framework?
I don't do TDD yet, but I want to be able to create 'dummy data' in my database.
As far as I understand it, Factory Girl is a perfect gem to do this.
Looking through the docs, there seems to be a ...
0
votes
0answers
68 views
Factory Girl for plain ruby script
I have a ruby project. Which is to be run as a daemon with upstart. This is a working project. But i am stuck with its Rspec.
Rspec:
it "finds a PENDING transaction" do
create(:transaction)
...
1
vote
1answer
41 views
Whats the difference in Rails when a class is in quotes
I've noticed a couple examples in Rspec and FactoryGirl where some people put the class name in quotes, and some don't.
Example rspec:
describe "User" do
...specs...
end
describe User do
...
0
votes
2answers
171 views
Override attributes keys in FactoryGirl
I have a model Post with an attribute published_at.
However, in POST request API requires it to be assigned as published, not published_at.
So in my model I override setter method like so
def ...
1
vote
2answers
2k views
ruby 1.9.3p286 and factory_girl_rails error on bundle install in application directory
I do have a problem with bundler install for the gem 'factory_girl_rails' and I don't know how to resolve.
Each time I run bundle install in the application/project directory the following error is ...


