0
votes
0answers
60 views

Ruby on Rails, Why I can't save and find elements on Mongoid?

I'm using Ruby on Rails, Mongoid and RSpec I have a model called EvaluationMessage. class EvaluationMessage include Mongoid::Document field :question_sn, type: Integer field ...
2
votes
0answers
42 views

How to test mongoid model validations with message by shoulda?

I have a model with validations, like this: class Order include Mongoid::Document field :first_name, type: String field :last_name, type: String validates_presence_of :first_name, :message ...
0
votes
0answers
131 views

Mongoid Rspec and Capybara : Document(s) not found for embedded documents

Here is a strange behavior when testing a simple CRUD interface for embedded documents using rspec and capybara. The embedded documents are not retrieved in database through the Show action of the ...
1
vote
0answers
73 views

Database items not available when running RSpec and Mongoid

I'm new to Rails so probably I'm missing something obvoius... I'm trying to write a Rails app that uses Mongodb with the Mongoid gem. I have some troubles with testing. I want to check if an html ...
0
votes
1answer
72 views

How to test mongoid scopes?

I defined the following User class with scopes : class User include Mongoid::Document include Mongoid::Timestamps include Mongoid::Search # SCOPES scope :all_admins, where( role: :admin) ...
0
votes
0answers
39 views

Have Mongoid forget Observers

I am writing tests for my Mongoid document and observers separately. When I run rspec on my spec directory, my tests fail because the observer is still attached to my document class. The Mongoid ...
3
votes
1answer
52 views

Preventing rspec trying to connect to mongoid

I am running rails with mongoid as my db with the connections in my mongoid.yml file. The problem is that every time I run rspec it tries to connect to the mongodb back end. I want to stop this ...
0
votes
1answer
154 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
2answers
195 views

How to Prevent this error with RSpec and Mongoid in rails when generating RSpec tests?

I tried installing rspec and mongoid in a project (Following the example from the book 'Rails Deep Dive'), and I getting errors when I try to run the generator from RSpec. here is the gemfile: gem ...
2
votes
1answer
128 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
54 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 ...
2
votes
1answer
183 views

RSpec and Mongoid together with rails-api

I'm trying to use RSpec together with Mongoid and rails-api. The Gems I'm using are rspec-rails and mongoid-rspec. Everything is fine except of this little thing: # users_controller_spec.rb describe ...
0
votes
1answer
60 views

How do I stub a mix-in method in RSpec

I'm using the Mongoid class to persist Ruby objects to MongoDB. Example object: class Option include Mongoid::Document field :name, type: String field :created_at, type: Time, default: ->{ ...
0
votes
1answer
97 views

RSpec/Mongoid inheritance of defaults completely different result in test/development

This is one of those ones that makes you think you're going insane... I have a class Section, and a DraftSection that inherits from it: (Trimmed for brevity) class Section include ...
1
vote
0answers
100 views

Mongoid performance measuring

I'm building a web app using Mongoid, Sinatra and Rspec for testing. What kind of technique or gem can be used with this stack to measure performance of queries?
1
vote
1answer
417 views

rspec gives error Moped::Errors::ConnectionFailure

When i run tests rspec, i get error 1) Nimba::Storages DropboxStorages returns http success Failure/Error: Unable to find matching line from backtrace Moped::Errors::ConnectionFailure: Could not ...
0
votes
0answers
72 views

Random, non-deterministic rspec nil failures

We have random nondeterministic rspec failures of the form: NoMethodError: undefined method `[]' for nil:NilClass We eventually traced the failures back through cover_me to its dependency on ...
2
votes
2answers
505 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 ...
1
vote
3answers
487 views

RSpec/Mongoid: Expect to change count on embedded models

I have two Mongoid models: User and EmailAccounts. The latter is embedded in the User model. That configuration should be fine because it works generally. Now I'm trying to write an integration test ...
0
votes
1answer
169 views

fabrication with mongoid - wrong number of arguments

I'm using Mongoid. I have an object : class Employee include Mongoid::Document field :name_first, type: String field :name_last, type: String field :name_other, ...
0
votes
1answer
107 views

Mongoid == (equals) operator not working as expected

Sometimes in my tests I compare two user objects: transaction.sender.should == user1 And Rspec gives me some output showing that the objects have the same id (and other params) but have a different ...
0
votes
1answer
233 views

How to configure rspec & mongoid for gem testing?

I am working on creating a new Gem that has some models which use Mongoid. I would like to test my gem using RSpec. I have started using RSpec for writing tests. I have installed a gem called ...
0
votes
1answer
219 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
0answers
316 views

integration test on sign-in page with capybara, rspec, mongoid, database-cleaner

I am trying to setup login test for my web app. User should be redirected to dashboard after successful sign-in. However, in the dashboard spec, the user created by factory girl can't sign in. But ...
2
votes
0answers
111 views

How can I test the type of query Mongoid will generate?

I'm trying to assert, using RSpec, that a given Mongoid query will not load the record, just check for its existence, because the record is big (several MB), and the code needs to only know whether or ...
4
votes
1answer
638 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
2answers
894 views

How to handle Mongoid::Errors::DocumentNotFound in Rspec?

I have an ArticleController with the following code : def edit @article = current_user.articles.find(params[:id]) end And the following test: describe "GET 'edit'" do it "should fail when ...
1
vote
2answers
389 views

RSpec tests break when validating embedded Mongoid models

I get this RSpec error when I try to embed one document in another. Sorry, I'm new to MongoDB. I'm used to sqlite3 and pg. I guess I just don't know how to test this sort of relation. Can someone help ...
4
votes
1answer
926 views

Using database_cleaner, mongoid and active_admin causes specs to fail with ActiveRecord::ConnectionNotEstablished

I have an existing project using mongoid, database_cleaner and rspec. I try to add active_admin, using the active_admin patches available. ActiveAdmin assumes it is in an ActiveRecord project, most ...
-1
votes
1answer
278 views

Devise, rspec and Mongoid test failing

require 'spec_helper' describe User do before(:each) do @attr = { :username => "User", :email => "aaaaer@example.com", :password => "foobar", ...
1
vote
1answer
493 views

Rspec Validation testing (Mongoid )

I got a problem when i testing validations in rails with mongoid This is for example my Person Model and my Rspec test. class Person include Mongoid::Document validates :first_name , ...
0
votes
1answer
505 views

Create controller tests for Mongoid embedded models

I'm working on a Rails 3 app that allows users to follow movies by adding them to their queue, so that they're notified when the movies are premiering. Since I'm using Mongoid, I've structured it so ...
6
votes
1answer
688 views

How to test Mongoid::Observer with rspec

On a simple mongoid data model with a user that has many comments, I want to award the user with a specific badge when he writes at least 1 comment. So I set up an observer like this : class ...
1
vote
1answer
853 views

Undefined method `reflect_on_association` using Mongoid, Rspec

I'm learning me some Rails! But right now, I can't seem to get past an error RSpec is throwing. The error is as follows: 1) EntryMethodsController POST create with valid params creates a new ...
0
votes
1answer
273 views

Rspecs for Sub APP and Main APP in Padrino

Is there any good way to test a controller and model of Sub APP in Padrino with rspec? I am a newbie experimenting with Padrino and Mongoid ORM. Can anyone provide me the link for examples showing ...
7
votes
3answers
5k views

Clean out, or reset test-database with Rspec and MongoID on Rails 3

When I run my rspec tests, many fail due to stale data in my mongodb database. AFAIK it is far better to test with a clean database. With mysql, I could run rake db:test:prepare to clean up the ...
2
votes
1answer
1k views

Rspec test if an attribute was updated

My model has a method that will update several attributes in a model from a remote resource. I want to test that with Rspec, but cannot find how to test whether a field was created or updated. Some ...
1
vote
2answers
222 views

why does mongodb fail inconsistently with rails3 and rspec?

We have a rails 3, mongodb app using rspec, very normal setup I think in spec_helper: DatabaseCleaner.strategy = :truncation DatabaseCleaner.orm = "mongoid" config.before(:each) do ...
4
votes
3answers
1k views

mongoid, rspec and assigns(:people) issue

I'm trying to write my first specs for the People Controller Using mongoid (2.0.1), rspec (2.5.0), mongoid-rspec (1.4.2) and fabrication (0.9.5), if necessary. (remark: the Organization model mocked ...
6
votes
3answers
2k views

Configuring RSpec with new Rails/MongoID application

I'm starting a new app and notice some missing documentation from the last time I built a MongoID app from scratch. Namely they used to suggest on a page that no longer exists ...
1
vote
2answers
685 views

How to fix this RSpec error with Mongoid? “can't convert Symbol into Integer”

I'm writing tests for my controller. They are very simple, but this error has kept popping up. This is my controller def show id=params[:id] @user=User.find(:first,id) end My test ...
2
votes
1answer
677 views

Rspec 2 'should_receive' not working with Mongoid::Document class

I'm facing some problems when trying to assert that a method in a Mongoid::Document class is invoked by my controller code: require 'spec_helper' describe AController do describe 'GET index' do ...
1
vote
2answers
2k views

Loading Mongoid seed data automatically before Rspec runs

Someone asked this question here: How to load db:seed data into test database automatically? But their solution only works if you are going to run db:test:prepare which depends on a schema to load. ...
5
votes
2answers
1k views

Which gem for RSpec matchers should I use with Mongoid?

It seems there are two gems that provide RSpec matchers to use with Mongoid. Which is a better choice and why? MONGOID-RSPEC Evan Sagge's mongoid-rspec gem provides RSpec matchers for Mongoid. ...
6
votes
1answer
4k views

Rspec Undefined method 'should receive'

I'm trying to use rspec with mongoid but I'm running across this error: undefined method `should_receive' for ShortenedUrl:Class Here's my spec_helper.rb file: # This file is copied to spec/ when ...
4
votes
1answer
674 views

protected “reject” method firing with Rails 3 RC, Mongoid, and Recaptcha and RSpec

Please bear with me as I'm a bit new to rails (especially rails 3), and I'm kinda stumped by this. Basically I want to test my CustomersController in my application using RSpec. When I execute my ...