Machinist is a factory framework for building test objects in Ruby. It's made to be a drop-in replacement for fixtures in Ruby on Rails testing suites.
1
vote
0answers
57 views
ArgumentError with Cucumber and Machinist
I am using Cucumber Factory and to make it easy to use Machinist with Cucumber and I am running into an ArgumentError. The line in my feature file that is causing the problem is:
Given there is a tag
...
2
votes
1answer
52 views
Test data generation for Ember.js (like factory_girl or machinist)
I'm writing unit and integration tests against an Ember.js application, and I can't connect to the server when the application is under test. This means I need to use DS.FixtureAdapter to back up my ...
0
votes
1answer
81 views
How to get nested attributes hash with machinist?
so I'm trying to write some controller tests for quite complex nested form. I have machinist which works fine for model tests but I can't get a nested hash out of it to use for a post request in ...
0
votes
1answer
124 views
Rails fixtures with a ruby script
Fixtures, factories, ... etc don't execute the real create() method. For instance, when an user is created, I generate a Preference object for him. But with fixtures I have to do it manually.
So ...
3
votes
0answers
275 views
RSpec and Machinist error: Too many open files
This morning I am having the following error:
14) Deal on creation sets frozen to false or nil
Failure/Error: Unable to find matching line from backtrace
Errno::EMFILE:
Too many ...
1
vote
1answer
296 views
rails 3.2 and machinist issues
I've just upgraded to Rails 3.2.1 with Ruby 1.9.3-p0 and I'm using Machinist 2.0. Before updating a large project all my tests passed. The problem I"m having is when I create a blueprint within a ...
1
vote
0answers
69 views
Machinist2 and dirty tracking
Unfortunately, it seems that Machinist in cooperation with Active Record somehow bypasses dirty tracking. While I have test based on after_save callback, the tracked attribute must be set explicitely, ...
0
votes
1answer
256 views
Rails 2.3.8 machinist undefined method make?
I'm working on an old Rails 2.3.8 which doesn't have any testing and I'm trying to add some tests using rspec with machinist to the app.
I've installed rspec 1.3.0 & 1.3.2 and ran the generator ...
1
vote
1answer
112 views
Passing in non-attribute values to Machinist blueprint
This is a simplified example of what I'm trying to do...
Suppose I had an object Person:
Person.blueprint do
name
age
end
I want to be able to do something like this:
...
0
votes
1answer
428 views
Machinist Blueprint when model belongs to 2 has_many associations
Environment: Ruby 1.9.2, Rails 3.1, Machinist 2
I have a Transaction model which belongs to both an Account and Category.
class Transaction < ActiveRecord::Base
belongs_to :account
belongs_to ...
2
votes
1answer
128 views
Why don't machinist objects to save inside nested blocks?
This is my spec code that isn't working:
require 'spec_helper'
describe User do
describe "blah" do
it "should save itself" do
user = User.make!
u = User.find user.id
user = ...
8
votes
4answers
629 views
Rails 3: Duplicate validation error messages during testing
I'm getting some weird validation behavior: it's duplicating my validation error messages and I can't figure out what's causing it... it doesn't do this in the rails console.
Here is the validation ...
2
votes
1answer
188 views
Machinist + RSpec and reserved words
I have a blueprint:
Model.blueprint(:something) do
name "Some name"
context "some context"
end
"context" is an attribute of Model, but it is also a reserved word of RSpec. When I try to make ...
2
votes
1answer
340 views
validates_uniqueness_of failing with tests, machinist
I have a validates_uniqueness_of validation on my model:
#SwimMeetRelayEvent.rb
validates_uniqueness_of :event_number_digit, :scope => [:swim_meet_id, :event_number_alpha]
validates_uniqueness_of ...
0
votes
1answer
180 views
Machinist + Cabybara + Test::Unit = blueprints missing
I've run into a very confusing problem...
All my tests pass when i run them in isolation.
When I run them like rake test, after my integration tests run, Machinist says that it can't find blueprints ...
2
votes
1answer
207 views
Is there any rails factory to help me test non persistant models?
I'm working on a rails application on which the models are plain ruby classes without any persistence layer (no active record or similar). I want to test these models from RSpec with all the niceties ...
4
votes
1answer
358 views
When would a ruby array count not equal to the number of elements in an array?
I'm running testunit (with machinist) and getting this very strange result when I run the ruby debugger
(rdb:1) @document.document_items
[]
(rdb:1) @document.document_items.count
2
(rdb:1) ...
0
votes
0answers
218 views
discrepancy between requiring a path in rails console vs. rails s (WeBRICK)
I'm using Machinist blueprints in development.
from development.rb:
config.after_initialize do
require 'spec/support/blueprints'
puts "********* blueprints loaded! *********"
end
it works fine ...
4
votes
2answers
809 views
Machinist, how do I reference the object I'm making and pass it to an association? (AssociationTypeMismatch)
I'm trying to build factories for relatively complex models.
I have a Pressroom model, which belongs to Source, and Source has many Pressrooms. When creating the Source, if pressrooms is empty, an ...
2
votes
2answers
598 views
can cucumber and rspec use the same blueprints.rb file
I'm using Rails 3, machinist 2, cucumber and rspec all together and have two blueprints.rb files. One in the spec directory and one in the features/support directory.
Is it a good idea to just have ...
1
vote
1answer
349 views
Inheriting attributes in Machinist blueprints
Using Machinist, is there some way one can define blueprints such that they inherit attributes from other blueprints? I've looked at all the documentation and examples I've found, but I haven't seen ...
0
votes
0answers
118 views
Cucumber: unexpected deletion object from database
I use authlogic as authentication system.
I wrote such scenario for cucumber:
Scenario: test login
Given there are no users
And the following users:
| login |
| user |
...
1
vote
1answer
437 views
Using machinist instead of fixtures
In my Rails 3 application, I have a User model with the following fields
name: string
email: string
children: has_many association to another model
I'm using machinist 2 to generate mock ...
2
votes
2answers
967 views
Is there a way in factory_girl to get attributes_for and create for the same instance element?
If I want to create and instance using "create" build strategy and then want to use "attributes_for" build strategy for verification, is it possible to do? And if I use sequences in the factory? Is it ...
6
votes
2answers
787 views
Singleton factories in factory_girl/machinist?
Is there some configuration in a factory of factory girl/machinist that forces it to create objects with the same factory name just once during test case and return the same instance all the time? I ...
1
vote
4answers
4k views
Rails integration test with the devise gem
I want to write an rails integration test (with ActionDispatch::IntegrationTest). I am using devise for authentication and machinist for test models. I cannot successfully sign in.
Here is a simple ...
2
votes
2answers
432 views
Machinist for Non-ActiveRecord Models
Is it possible to use Machinist to create blueprints for non-activerecord models? Seems to generate an error no matter what I try!
If this is impossible with Machinist, is there another fixture ...
1
vote
2answers
579 views
Mongoid with Machinist
I am using machinist and mongoid. How can I generate blueprint for embeds_many association. Mongoid embeds_many association embeds the hash of array. So I just started like this:
User.blueprint do
...
2
votes
2answers
730 views
How to use named Machinist blueprints in Cucumber with Pickle
I noticed this little tid-bit in the readme for pickle:
(The latest version of pickle supports multiple
blueprints, for earlier versions of machinist use pickle <= 0.1.10)
I'm running in to a ...
2
votes
2answers
624 views
How do I get cucumber and pickle working with mongo_mapper, machinist, and machinist_mongo?
I would like to get machinist, machinist_mongo, mongo_mapper, cucumber and pickle to play nice together.
Currently I have machinist with all my blueprints configured and am using cucumber to do BDD. ...
0
votes
2answers
707 views
Named Blueprints with factory_girl
I am using Factory Girl but like the machinist syntax. So I wonder, if there is any way creating a named blueprint for class, so that I can have something like that:
User.blueprint(:no_discount_user) ...
0
votes
2answers
491 views
Error when logging in with Machinist in Shoulda test
I am having some trouble getting the right usage of Machinist and Shoulda in my testing.
Here is my test:
context "on POST method rating" do
p = Product.make
u = nil
setup do
u = login_as
post ...
37
votes
3answers
7k views
Machinist vs FactoryGirl - pros and cons
I'm working with factory_girl, but looking at the machinist gem. Could you tell me please - what are the pros and cons of migrating to machinist? Have you compared those libs?