Tagged Questions
0
votes
1answer
26 views
Factory Girl Issue with create
Why does the following placed in spec/factories.rb give me the error out put bellow:
FactoryGirl.create :user do |f|
f.sequence(:email) { |n| "test#{n}@example.com" }
f.password "test"
end
...
3
votes
3answers
67 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
81 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 { ...
2
votes
1answer
113 views
Devise test database records conflicts on simultaneous tests
I generate Users, Clients and Invoices from the following factory
FactoryGirl.define do
factory :user do
sequence(:email) { |n| "person_#{n}@example.com" }
password "foobar"
...
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
580 views
Rails 3: uninitialized constant FactoryGirl
I am trying to create my first controller test using FactoryGirl for my Rails application, but I keep retrieving the following error:
uninitialized constant FactoryGirl
My Factories.rb file looks ...
1
vote
1answer
229 views
FactoryGirl,Rspec2 and devise rails 3
I am using Rspec, FactoryGirl and Spork for my tests.There are 2 things I am a litte unclear on, first is the location of my factories.rb file. At present I have it located in
...
2
votes
2answers
2k views
NameError: uninitialized constant Factory
I'm following this tutorial to get started with TDD on rails with factory girl, rspec and i ran into this issue i can't get my head around.
Here's my "factory".rb (events.rb)
require 'faker'
...
0
votes
0answers
119 views
TDD in Rails: Failure/Error: visit login_url undefined local variable or method 'login_url'
I am following Ryan Bate's Railscast (http://railscasts.com/episodes/275-how-i-test?view=asciicast) for TDD.
I implemented his password recovery from another video and now I am going back to learn ...
2
votes
1answer
352 views
Testing presence and belongs_to with Rspec
I'm trying to learn how to test with Rspec.
At the moment I have a spec for an Item class:
require 'spec_helper'
describe Item do
it { should belong_to :list }
before(:each) do
@item = ...
2
votes
1answer
313 views
Rspec & FactoryGirl acceptance validation
I've been breaking my head on this easy validation and I can't get it to validate. I've got the following model:
class Attendance < ActiveRecord::Base
belongs_to :user, counter_cache: true
...
0
votes
1answer
214 views
run callback on factorygirl
I have a callback in my user.rb model something like:
class User
include Mongoid::Document
include Mongoid::Timestamps::Created
.
.
.
.
#add a first board for user
...
0
votes
2answers
499 views
RSpec uniqueness email test fails with FactoryGirl
Edit
Using the answers to the question I changed the test to the following which tests correctly and passes..
describe "when email is already taken" do
let(:user_with_same_email) { @user.dup }
...
2
votes
2answers
384 views
FactoryGirl passing 'nil' instead of values
I'm starting with Rails and RSpec and having a trouble with FactoryGirl. Basically the object don't receive the attributes.
model/user.rb
class User < ActiveRecord::Base
attr_accessor :name, ...
0
votes
1answer
157 views
Complex assotiations in FactoryGirl mockup
I need to create some complex mockups for my app where I need to reuse one of fields of model. I wanna do it like
FactoryGirl.define do
factory :invoice do
sequence(:name) { |n| "Testowa #{n}" ...
5
votes
2answers
4k views
FactoryGirl, why I get already registered or uninitialized constant?
I am trying to do a simple test for my model Course, I have wrote this factory:
FactoryGirl.define do
factory :course do
name 'How to be happy ?'
end
end
the course_spec.rb:
require ...
5
votes
2answers
4k views
FactoryGirl and Rspec
I've very green to this TDD business, so any help would be fantastic!
So, I've got a factory with the following:
FactoryGirl.define do
factory :account do
email "example@example.com"
url ...
1
vote
1answer
738 views
Factory Girl - variable number of associated objects for HABTM
If I have 2 models - eg. Shop and Brand and i want to model the shop having between say, 3 - 10 brands, what is a good way to do that using factory girl?
factory :brand do |b|
b.name "Hip Brand"
...
1
vote
1answer
308 views
Factory_girls and ancestry
im have model Category.
class Category < ActiveRecord::Base
has_ancestry :cache_depth => true, :depth_cache_column => :depth
end
Category have field name. Im want to build a factory for ...
6
votes
2answers
1k views
Accessing factory_girl factories in *other* factories
I'm using the factory_girl plugin in my rails application. For each model, I have a corresponding ruby file containing the factory data e.g.
Factory.define :valid_thing, :class => Thing do |t|
...
5
votes
2answers
659 views
Silencing Factory Girl logging
Just to clear the air, I am not some cruel factory master trying to silence working ladies. I am having a very annoying problem where when using Thoughtbot's factory girl in my specs, every time ...
