1
vote
1answer
37 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: ...
2
votes
2answers
89 views

FactoryGirl creating objects in development environment

When I boot up my rails console in development I see FactoryGirl creating objects. Clearly I'm doing it wrong, but what's the right way to do this? This code makes my tests work... # ...
1
vote
1answer
72 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
140 views

Applying FactoryGirl trait to Mongoid embedded objects

I am building a Rails 3.2.11 application with Mongoid. I test with Cucumber and create test objects with FactoryGirl. I have embedded objects. I want to be able to use FactoryGirl traits with both ...
0
votes
1answer
148 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| ...
0
votes
1answer
106 views

How to load Factories for Embedded Models (Mongoid - Rails)

I am using Mongoid in my Rails application, consider i have the below fields in a class named "Post" with below structure class UserPost include Mongoid::Document field :post, type: String ...
2
votes
1answer
82 views

How do you create embedded documents using FactoryGirl?

I am using FactoryGirl and RSpec to test my code. Mongoid in my ORM. The problem I am encountering is that in order create an embedded document, you must also create the parent document. Here is an ...
2
votes
1answer
127 views

received :update_attributes with unexpected arguments

I am very new to rspec and factory girl and I am stuck with a strange problem. I have an action in a controller like: def update @property = current_user.properties.find ...
0
votes
1answer
53 views

Where condition in FactoryGirl

I am trying to create an application using Ruby On Rails and MongoDb as backend. And I am using FactoryGirl for testing. As I am new to these technologies, I am not sure if I could use where ...
0
votes
0answers
50 views

Set a FactoryGirl field with a specific field from an association

I'm trying to set a mongoid _id from the value of another factory field. This is what I came up with (which doesn't work) FactoryGirl.define do factory :project do ignore do ...
2
votes
2answers
479 views

Setting up Embedded Mongoid Models with Factory_Girl

So I'm playing with Mongoid, Rspec and Factory_Girl and I had some issues with an embedded document. I had the following models: class Profile include Mongoid::Document #Fields and stuff ...
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 ...
1
vote
1answer
218 views

Mongoid Polymorphic Association + FactoryGirl + RSpec

I'm trying to embed emails inside person Mongoid object using polymorphic approach. Getting "BSON::InvalidDocument: Cannot serialize an object of class Mongoid::Relations::Embedded::Many into BSON." ...
4
votes
1answer
625 views

FactoryGirl & Mongoid embedded_in and build_list

The Issue Okay so the issue I am having is with FactoryGirl building embedded assignments in my Quiz which uses mongo instead of active record. I tried using a build_list which works with my active ...
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
384 views

Mongoid hash property in FactoryGirl

How does one write a Factory Girl definition for a Mongoid class where one of the properties is a hash? (it is not an embedded document) The Mongoid class looks something such as class Foo field ...
3
votes
1answer
1k views

FactoryGirl belongs_to association

I have a factory where I define a location in factories/locations.rb. I'm using Mongoid and Rails 3.1.1 with ruby 1.9.3. FactoryGirl.define do factory :location do name Faker::Name.name ...
20
votes
1answer
3k views

Factory Girl + Mongoid embedded documents in fixtures

Let’s say you have the following mongoid documents: class User include Mongoid::Document embeds_one :name end class UserName include Mongoid::Document field :first field ...
1
vote
0answers
1k views

Factory Girl, Mongoid, and Embedded Documents

I am setting up my first app with Mongoid and Devise. I am trying to Factory a user in my test with this factory: Factory.define(:user) do |f| f.email "bob1234@example.com" f.password "testing" ...
0
votes
1answer
3k views

Using factory_girl with mongoid to test referenced_in/references_many

I am trying to test an associated document for a subscription service. Each subscription is embedded in an account and references a plan. Below is the various bits of code: The account: ...