0
votes
1answer
43 views

Capybara FactoryGirl Carrierwave cannot attach file

I am trying to test my application with cucumber and capybara. I have the following step definition: Given(/^I fill in the create article form with the valid article data$/) do @article_attributes ...
0
votes
2answers
203 views

My Cucumber test is failing, not filling in form

i am very new to rails, and even newer to BDD. I have attempted to stick to DRY methodology but somethings not right here.. FEATURE Scenario: Add a new vehicle with valid data Given I exist as ...
0
votes
1answer
57 views

Associating a number of FactorGirl models with one master 'Company' model

I've been using factory girl in RSPEC quite a bit, but this month I've been tasked with implementing Cucumber stories into our test suite. I think I may have a problem I'm not quite sure about. Our ...
3
votes
1answer
623 views

rails - asset pipeline - how to get newer version of jquery-ui included in the project?

I'm having a problem with the fullcalendar js which we use directly through the plugin (not the gem which is currently version incompatible anyway). I'm upgrading rails from v3.2.6 to v3.2.8 ...
0
votes
1answer
122 views

Cucumber::Rake::Tasks not using ruby --1.9?

We are trying to use Rake to run Cucumber tests on our build server. Everything has been running fine for a few weeks, but last night we started seeing an error C:\jruby-1.6.7\bin\jruby.exe --1.9 -e ...
1
vote
1answer
70 views

Confused by Factory Girl - Testing edit of an associated model

I have the following models: Student has_many Lesson Lesson belongs_to Student And I want to test that a Student can edit a Lesson. Here is what I have started doing: Given I am logged in as a ...
0
votes
1answer
401 views

My FactoryGirl created objects are not persisted?

I am running the following feature: Scenario: viewing existing images Given I am on the images page And 4 images already exist Then I should see a table containg those 4 images And ...
-1
votes
1answer
281 views

FactoryGirl step_definitions inclusion causes error

I'm using FactoryGirl successfully, but I've just tried requiring the factory_girl/step_definitions file and am getting the backtrace shown below. The error disappears if I remove the require of ...
1
vote
2answers
189 views

Factory_girl simple association between two models

FactoryGirl.define do factory :agency do name "Example Inc" available_items "20" recruiter # recruiter.id end factory :recruiter do email 'example@example.com' password ...
1
vote
1answer
305 views

Get FactoryGirl and cucumber talking ArityMismatchError

I've got a greenfield Rails 3.2 app that I cannot get the first step-def to work. My cucumber-rails is (1.3.0), factory_girl_rails (3.1.0). They are both in the test environment. As per good cucumber ...
0
votes
0answers
427 views

Cucumber fails with uninitialized constant Factory::Syntax (NameError)

Just migrated from object-daddy to FactoryGirl gem and updated my steps, but now I get the following error (in my cucumber tests): uninitialized constant Factory::Syntax (NameError) I followed the ...
0
votes
1answer
140 views

FactoryGirl: How do I create a factory once and use it everywhere even in associations

I have two factories defined (there are others not shown) as follows: Jobseekers & SavedSearch FactoryGirl.define do factory :job_seeker do type Role::JOB_SEEKER_TYPE commenced_on { ...
0
votes
1answer
421 views

FactoryGirl, rails, cucumber: Make association with multiple records

OK, the factoryGirl pages at thoughtbot are very helpful, but I'm doing something wrong. In an earlier iteration of a basic feature I made two records and forced the association per the abbreviated ...
0
votes
2answers
529 views

Capybara unable to find the link of the object created by Factory_Girl

A similar problem happened to me when I was doing an example problem. Capybara was not picking the text that was there. In this Capybara is not picking the link for the object that is there. Am I ...
1
vote
1answer
220 views

[mongoid][factory_girl] How to make factory_girl create in safe mode ? (mongoid safe mode)

Is there anyway to make factory_girl create records in mongoid safe mode?? The original code is: @user = FactoryGirl.create( :user, email: email ) But it failed without exceptions, cause by the ...
0
votes
1answer
259 views

Validation failed error in Rails application and Cucumber with Factory Girl

I have the following error: "Validation failed: Email address is already used" while trying to run feature for Devise user signing in. I suspect the problem is in Factory generated user, which ...
0
votes
2answers
312 views

Passing factory_girl object to step definition in Cucumber

Learning Cucumber testing with Factory_girl and I have an admittedly n00b question: How do I use my Factory_Girl step definitions in Cucumber? For example, I have the following test for the User ...
2
votes
1answer
639 views

Cucumber: Multiline arguments using “step” method inside a step definition

The factory_girl Cucumber helpers are cool. I love that this works: Given the following users exist: | Name | Email | | Alan | alan@example.com | | Bob | bob@example.com | But I ...
0
votes
2answers
376 views

FactoryGirl - How to generate hierarchy of category entries in database before running tests?

I am building an ecommerce website, the core of which is a catalogue module - it contains about 20 categories each of which has between 5 & 30 subcategories, products are then associated with ...
0
votes
2answers
468 views

FactoryGirl Has Many through

Okay, so i've set up a many-to-many association for users, projects and the ability to watch those projects. (Called, not the best name I've ever come up with "Watchings") #project.rb class Project ...
7
votes
2answers
8k views

FactoryGirl: Factory not registered: user (ArgumentError)

Having a lot trouble getting all the ducks in the right order with FactoryGirl. Set up a minimalist rails app (3.0.11), factory_girl_rails (1.4.0), factory_girl (2.3.2) & cucumber-rails (1.2.1) ...
1
vote
1answer
574 views

factory_girl_rails & Cucumber::undefined

Having a problem with making this work. Seems it has been a problem for others and I think I have followed all of the advice. I've set up a stripped down rails 3 .0.14 app to just include ...
1
vote
1answer
562 views

Factory Girl sets wrong value for auto-increment id in association

I have two dependent models with one to many association class Post < ActiveRecord::Base has_many :users end class User < ActiveRecord::Base belongs_to :post end in my DBMS post_id in ...
5
votes
2answers
560 views

Cucumber and Rspec sharing factory girl factories

I'm designing a test around rails using Cucumber and Rspec and I was wondering if it is good practice sharing the Factory Girl factory code between the Cucumber acceptance test and Rspec unit tests. ...
3
votes
4answers
1k views

Cucumber: Factory Girl doesn't modify database — creates object with .create but database table is still empty afterwards

p = Factory(:model) ap Model.find(:all) #output to prove that it's getting created so... the print shows that the IDs of the objects is going up.... but the database remains empty as I ...
0
votes
2answers
664 views

Problem with the factory girl cucumber step definitions

I am using the cucumber step definitons provided by factory girl and I can not get something to work here. First of all, here are the involved factories: Factory.define :user do |u| u.name {|n| ...
5
votes
4answers
2k views

Find or create record through factory_girl association

I have a User model that belongs to a Group. Group must have unique name attribute. User factory and group factory are defined as: Factory.define :user do |f| f.association :group, :factory => ...
1
vote
2answers
284 views

Get a factorygirl created object in cucumber steps

I'm using cucumber and factory girl with very good results, but I'm finding that the syntax is a little bit forced. Assuming there are valid factories for my model, I'd like a generic cucumber ...
0
votes
1answer
676 views

How to use Cucumber/Factory Girl with Persistent Roles

I use db/seeds.rb to populate my database with 2 user roles ("Admin", "User") that will never change. When i run tests though, the seed data does not get carried over and the results are error tests. ...
3
votes
1answer
759 views

how to use devise current_user inside factory_girl factories

I want to use current_user (of devise) inside the factories I create using factory_girl. My environment contains: Ruby 1.8.7 / Rails 2.3.5 / Devise / Cucumber / Pickle / Factory Girl I've the ...
5
votes
3answers
3k views

no such file to load — rspec/matchers - rspec-rails, shoulda, cucumber, factory girl, Rails2.3.10

I've inherited an old Rails2.3 app. It's very complex and has (shock, horror) no tests whatsoever. I'm used to rspec and cucumber so I thought I'd start working on getting specs and features defined ...
3
votes
3answers
664 views

ActionDispatch::ClosedError when testing Rails 3.1 model creation (RSpec/Cucumber)

I am creating a web application with Ruby on Rails 3.1 (RC1). I am using Factory Girl, RSpec and Cucumber (with Capybara) for testing, but I am experiencing unexpected raised ...
5
votes
4answers
3k views

Using Factory Girl step definitions in Cucumber features (Rails 3)

I'm trying to use Cucumber and Factory Girl. The following lines: Given I am not logged in And the following user exists: | login | email | password | confirmation | | ...
1
vote
1answer
888 views

Rails 3, Rspec/Cucumber, and Factory Girl: No method error on nested/associated objects

I've been bashing my head against a wall for a while on this one and I can't get it to work. I have three models: class Instrument < ActiveRecord::Base has_many :analytical_methods has_many ...
0
votes
1answer
156 views

Is it possible to use a cucumber scenario as a function?

Something like: Scenario: Create a Test Category Given I am on the regression test test cases page When I follow "New Category" And I fill in "Name" with "Test Category" And I press "Add ...
0
votes
1answer
563 views

Rails3 + Cucumber + Factory_girl_rails + Authlogic issue

I've been struggling with this all day long! In the GemFile, I have: group :test do gem 'database_cleaner' gem 'cucumber-rails' gem 'cucumber' gem 'rspec-rails' gem 'spork' ...
0
votes
1answer
242 views

Database records aren't created when running cucumber

I'm working on a rails project using, cucumber, capybara and factory girl, and recently updated from rails 3.0.3 to rails 3.0.5, deleted my Gemfile.lock, run the bundle install command, and it appears ...
0
votes
1answer
646 views

Using Factory Girl to create a factory for Thread and Thread Participations

can someone provide an example or point me to where I can learn how to do Factory Girl nested model associations? A Thread has to have at least one ThreadParticipation Right now I have my thread in ...
0
votes
0answers
672 views

Cucumber, Pickle, Factory-Girl “Given a” returning “Undefined step:”

For posterity (see comments below) I had "Give a User exists" when it should have been "Given a user exists" (case) I am getting an undefined step for "Given a User exists" when running $ cucumber ...
10
votes
7answers
2k views

AssociationTypeMismatch and FactoryGirl

This has been causing some frustration recently... It seems that using Factories in my cucumber tests, in some situations causes AssociationTypeMismatch errors such as: MyModel(#65776650) expected, ...
0
votes
2answers
1k views

Using Factory Girl with Cucumber and Capybara, how do I populate forms?

I have this: Scenario: Login Given a user exists with first_name: "Fred" When I am on the home page And I fill in "email" with the user: "Fred" And I fill in "password" with the user: "Fred" ...
2
votes
2answers
2k views

Trying to load my seed data before cucumber tests in Rails3 / Capybara with factory_girl

I have some seed data (for price ranges) that is the same in prod, dev, test and doesn't change. I need that data in my test db to run my cuke tests. I am load my seed data into test DB before the ...
1
vote
2answers
633 views

factory_girl's Cucumber steps and optional associations

I have the following models: class Person < ActiveRecord::Base belongs_to :family end class Family < ActiveRecord::Base end And the following factories: Factory.define :person do |p| ...
6
votes
2answers
3k views

How can I add my seed data to my test database using rake db:seed?

I'm using Factory Girl to populate my seed data and adding it to the db in seed.rb. I'm then running my tests using Cucumber. I have a price table that contains seed data that I want in all my ...
2
votes
2answers
1k views

How to Populate Lookup tables in Testing (Rails)

I am using Cucumber, Rspec, and Factory Girl for the testing of my Rails Application. But I have several lookup tables that contain mostly static data. So I'm trying to figure out the best way to ...
3
votes
2answers
4k views

Setting up factory girl with cucumber and rails 3

I'm trying to get factory girl setup with rails 3, but I'm getting this error when I rake cucumber: james@james-laptop:~/rails-projs/simple-beach-63$ rake cucumber:wip (in ...
6
votes
3answers
1k views

Factory Girl Newbie: How to create new record only if doesn't already exist

Is there a simple way in factory girl to create a new factory only if one doesn't already exist? If there isn't a simple way, what's the most concise means to ensure only one factory is created for ...
8
votes
2answers
4k views

How to use Cucumber and Factory Girl together?

I'm trying to configure FactoryGirl to work with my Cucumber tests. I added the following lines in env.rb require 'factory_girl' Dir.glob(File.join(File.dirname(__FILE__), ...
6
votes
3answers
2k views

Devise/Cucumber - Adding a step which confirm a user exists

I'm new to cucumber and I find following snippets to test the Devise login feature. However it seems one more step missing, and I didn't find any solution: Given /^that a confirmed user exists$/ do ...
3
votes
1answer
951 views

undefined method 'password_confirmation' for User: Testing Authlogic with Cucumber and Factory Girl

My tests work fine when I'm testing them individually, rake cucumber FEATURE = 'path/to/feature' but when I try to run rake cucumber They fail with the following error undefined method ...

1 2