0
votes
0answers
32 views

Rails has_many and belongs_to on same model

I have a School model that has_many :users. But, each school also has a primary_user. Here is my model: has_many :users belongs_to :primarycontact, :class_name => "User" This works fine in ...
0
votes
1answer
232 views

Factory girl, dependent factories

In my app a district has many schools, a school has many uses, a user has many accounts, an account has one role. In order to create complete factories for testing I need to create a user and school ...
0
votes
1answer
201 views

Rails - minitest - Testing pages that require login

I am working on tests but running in to a road block on pages that require a current_user. I am using minitest, capybara, factorygirl, and authlogic, in rails 3.2.9 with ruby 1.9.3p327. I installed ...
1
vote
0answers
236 views

Why is database_cleaner breaking my tests (minitest / capybara / factory girl)?

I'm trying to get database_cleaner working with my test suite and I can't find anything online about this error: ERROR Couldn't find User with id=1 The tests run fine until I add database_cleaner. ...
3
votes
2answers
466 views

Capybara not working with factory girl

I'm using minitest with factory girl and capybara for integration tests. Capybara works fine when I don't user factory girl to create a user object, like this: it "logs in a user successfully" do ...
0
votes
1answer
141 views

Missing template error on create action when trying to use factory girl to test user logins in my rails app

When I try to use a factory to test my login on my rails app, I keep getting a missing template error. It's expecting a template for my create action, even though I have a redirect in my controller. ...
0
votes
0answers
62 views

Rails generate model interrupted by minitest error

When trying to generate a model I'm getting: lib/ruby/1.9.1/minitest/unit.rb:581:in `block in process_args': missing argument: -s (OptionParser::MissingArgument) ...
0
votes
0answers
155 views

Intermittent “Factory not registered” error with Textmate 2

Intermittently*, when running a test file directly with Command-R in Textmate 2, I get: Run options: --seed 19475 # Running tests: EEE.EEEEEEEEE Finished tests in 0.007291s, 1783.0202 tests/s, ...
0
votes
0answers
116 views

FactoryGirl creating records on loading?

I'm using the gem factory-girl-rails in a minitest-rails-spork setup. It seems that every time I start the tests, FactoryGirl executes every factory once and pollutes the db. Is this intended ...