0
votes
0answers
17 views

Why can't I populate a login form with a FactoryGirl.create(:user)?

I'm trying to test a login form with FactoryGirl, Rspec, and Capybara. I can test the signup form by running FactoryGirl.build(:user), but I can't login a user that is created by Factory Girl with ...
0
votes
0answers
9 views

Testing the controller having load_and_authorize_resource using RSpec

I have a controller like this, class SitesController < ApplicationController load_and_authorize_resource def index @search = Site.search(:include => :parser) do ...
0
votes
1answer
10 views

Rspec test describing listing items on index failing

Rspec/TDD beginner. I have a spec that is failing and I don't know why. Everything works in the browser as it should. I am using Kaminari for pagination, which defaults to 25 items per page. spec: ...
0
votes
2answers
33 views

How to test model's callback method independently?

I had a method in a model: class Article < ActiveRecord::Base def do_something end end I also had a unit test for this method: # spec/models/article_spec.rb describe "#do_something" do ...
2
votes
1answer
41 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 ...
0
votes
0answers
15 views

is it possible to pass variable to FactoryGirl.create to either do a time-consuming activity or not

I have a set of items that are part of an inventory. We use the same calls to generate seed data and for testing purposes. For seeding, we want to set up assets for items and for most tests, we don't ...
0
votes
1answer
35 views

Why does FactoryGirl(:build) work with Sorcery, but not FactoryGirl(:create)?

I'm trying to setup tests for my Rails app. I'm using Factory Girl and Rspec with Sorcery for authentication. For some reason this test doesn't pass: describe "User" do it "has a valid the factory" ...
1
vote
1answer
18 views

Completely remove Rspec, Capybara & Factory-Girl

I've been following the Rails tutorial but decided that ultimately I want to remove Rspec, Capybara and Factory-Girl gems as well as all the generated files, however I have no clue how to do this. I ...
0
votes
1answer
38 views

stub method in FactoryGirl

I have 3 models : Article: has_many photos Photo: belongs_to article belongs_to photoType PhotoType: has_many articles And a factory : FactoryGirl.define do factory :article do title 'The ...
1
vote
2answers
50 views

FactoryGirl with a product model : Rspec tell me that “Trait not registered”

Hi magical community ! Still a newbie with basic question for those who have time ;-) I created a User model and a Product model like this (thanks to @grotori): class User has_many ...
1
vote
0answers
22 views

'Errno::ENOENT no such file/directory' intermittently with FactoryGirl & RSpec/Rails

Getting a bizarre error on my RSpec tests, intermittently, on different examples. They all pass 99.999% of the time (and did up until an hour or so ago) leading me to believe there's something crazy ...
1
vote
1answer
33 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
2answers
26 views

factory_girl: Factories fails validation(of time) on create, but in my app, the validation passes

I have created an application with a strict input validation for time.. You have to type in the time with this format: 14:00. This works fine, but when i create Factories with factory-girl, for my ...
0
votes
3answers
40 views

Cleanly Setting up multiple models in FactoryGirl for a test/spec

I have been picking up on Rails best practices and learning to write good tests for my rails application. I am using rspec + FactoryGirl to test at the moment. For a while I was writing basic model ...
0
votes
2answers
42 views

FactoryGirl: Creating dynamic factories with parameters?

I have three factories that i want to DRY up. They look like this: factory :sequenced_stamps_by_years, class: Stamp do ... sequence(:day_date) { |n| n.years.ago } end factory ...
0
votes
1answer
49 views

Default_scope in Rails model when testing with Rspec using FactoryGirl

I'm developing a blog in Rails and I'm stuck when I was trying to test the default scope I added to the Post model in order to have the posts in descending order of their creation date. Post code: ...
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
47 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 ...
0
votes
2answers
81 views

NoMethodError: undefined method `sign_in_as!', FactoryGirl, Rspec, Rails

I am new at Rails. I'm using FactoryGirl to create users for my integration tests, and I cannot figure out how to sign in my user in the test. My factory looks like this: FactoryGirl.define do ...
0
votes
2answers
30 views

Factory Girl Confirmation Validation in Model Spec

I am having trouble with Factory Girl when trying to test if email confirmation is nil. Here is my model spec (user_spec.rb) require 'spec_helper' describe User do it "is invalid without an ...
3
votes
3answers
70 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
20 views

how can I define a specil struct by factory girl?

Using RSpec and Factory Girl, I create a factory like this: factory :hot_type do ad_type_id 4 city_id 110000 image "111" content { :link_url => 'xxx', ...
0
votes
1answer
48 views

Rails Capybara Test has empty Instance Variable

I have a controller sending in a list of vendors to my controller, and on normal view it's working fine. class VendorsController < ApplicationController respond_to :html, :json def index ...
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 ...
1
vote
1answer
50 views

Calling Rails model from another model

Is it considered a best practice to call a Rails model from another model ? (code below) : #models/user.rb def get_pending_requests(user_id) Friend.where("friend_id = ? AND approved = ?", user_id, ...
0
votes
0answers
56 views

rspec - Factory Girl association before_save

I have a weird issue when using Factory girl assigning objects on create post = Factory.create(:post, :comment => comment, :user => user) runs the after_save and doesn't update the comment ...
0
votes
1answer
31 views

rspec private method test with factory_girl

cashout.rb class Cashout < ActiveRecord::Base belongs_to :partner private def partner_exist? if self.partner.nil? errors.add(:base, "There is no partner! ") return false; ...
1
vote
2answers
49 views

Table count does not increase after save returns true for nested resource rspec test

I have a 'Mastertag' model as a nested resource for 'Project' with a create action as: def create @mastertag = @project.mastertags.build(params[:mastertag]) if @mastertag.save ...
1
vote
0answers
74 views

How to call factory girl with the same model name but belongs to different rails 3.2.12 engine?

There is misc_definition model in both projectx and customerx rails 3.2.12 engine. Projectx and customerx are needed in the same rails app. Now there is a problem about how to call the factory girl ...
1
vote
0answers
39 views

factory girl create error

company_factory.rb Factory.define :company, :class => Company do |c| c.company_name 'companyname' c.address 'companyadress' c.phone '012323232' c.company_prize_ratio 10 ...
0
votes
1answer
48 views

Testing 'create' action of a nested resource with Rspec + FactoryGirl

I have searched a lot on the internet as well as other similar questions on Stackoverflow, however I am still not sure on how to test the create method of a nested resource in my rails application. ...
1
vote
1answer
64 views

has_secure_password, RSpec and user creation

I am trying to get a minimal test to pass with Rspec and user login. Part of that means setting up a user that uses authentication with has_secure_password. I am trying with this: scenario 'test ...
0
votes
1answer
37 views

FactoryGirl creations don't show up in Selenium tests

I have a simple test case that looks like this: describe 'Quiz packs page' do before :each do FactoryGirl.create(:quiz_pack, :first_in_first_pack).should be_valid end end it "should have an ...
-3
votes
1answer
33 views

rails factory girl comparison failed

_spec.rb context 'find discount coupon' do it 'if coupon suitable for use' do coupon = Factory(:standart_discount_coupon) ...
0
votes
1answer
65 views

factorygirl create error

When I was debugging in console with pry,I have run brief = Factory(:brief,:project => Factory(:project)) this command.It supposed to be work but I got this error. ActiveRecord::RecordNotUnique: ...
0
votes
0answers
20 views

Rspec hook not running anymore

require 'spec_helper' require 'ruby-debug' describe Bill do before(:all) do @project=Factory(:project_started_with_no_brief) @customer_bill=Factory(:customer_invoice, :project => ...
0
votes
1answer
45 views

Rspec expected 1 errors on :email, got 2

I have a Factory in my code as : FactoryGirl.define do factory :user do name 'Nitish' email 'nitishxyz@gmail.com' password "password" password_confirmation "password" end end ...
0
votes
1answer
93 views

FactoryGirl and belongs_to association when testing Rspec

I have the following model: class Team < ActiveRecord::Base # Setup accessible (or protected) attributes for your model attr_accessible :name validates_presence_of :name belongs_to :user ...
1
vote
2answers
137 views

Rails Engine with RSpec and FactoryGirl

I followed a few tutorials and docs of FactoryGirl to use with RSpec. Currently I get one error when trying to use FactoryGirl.create: describe "GenericRecipesController" do describe "GET 'index'" ...
0
votes
0answers
69 views

Rspec Controller Tests with an STI user model?

I'm attempting to write some controller specs for a sub controller, in this case Admin::UsersController It has the basic set of CRUD actions. my users_controller_spec.rb describe ...
0
votes
2answers
69 views

testing model methods with rspec and factory

I have a getter/setter method in a model retrieving the last element of an array, and adding to the array (Postgresql array of strings): # return the last address from the array def current_address ...
0
votes
1answer
78 views

Assign variable in rspec controller test

I have an rspec test in which I need to test my controller. it "renders the #show view" do get :show, id: FactoryGirl.create(:quiz) @facebook_profile = FactoryGirl.create(:facebook_profile) ...
5
votes
1answer
218 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
1answer
83 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 { ...
1
vote
0answers
111 views

How to test a nested form with RSpec and FactoryGirl?

In my Rails project I have a User that can have many Projects which in turn can have many Invoices. Each Invoice can have many nested Items. class Invoice < ActiveRecord::Base attr_accessible ...
0
votes
1answer
138 views

How to test Rails create action with nested attributes and FactoryGirl?

I have a model that accepts an invoice and its nested items: class Invoice < ActiveRecord::Base belongs_to :user has_many :items attr_accessible :number, :date, :recipient, :project_id, ...
2
votes
0answers
34 views

How do I send params to a FactoryGirl trait?

I'm writing some tests that call a FG create with a trait that after_create, makes an associated object. Is there a way to send parameters to that associated product when I make the FG, or do I need ...
1
vote
2answers
140 views

How to test forms with nested attributes using RSpec?

I have an Invoice model that may contain a number of Items: class Invoice < ActiveRecord::Base attr_accessible :number, :date, :recipient, :items_attributes belongs_to :user has_many ...
0
votes
2answers
150 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 ...

1 2 3 4 5 8