This project is archived and is in readonly mode.
Loading fixtures for a module's model
Reported by Jonathan Démoutiez | December 24th, 2008 @ 02:49 PM | in 3.x
The load of fixtures doesn't detect models includes in modules so :
module RailsCommerce class Product < ActiveRecord::Base end end
We should to specify :
set_fixture_class :rails_commerce_products => RailsCommerce::Product
This patch detects automatically modules.
Comments and changes to this ticket
-
Pratik March 7th, 2009 @ 01:58 PM
- Assigned user set to Michael Koziarski
- Tag changed from activerecord, fixtures, models, modules to activerecord, fixtures, models, modules, patch
-
kmpm July 22nd, 2009 @ 04:21 PM
Bumping this one and sending along a reminder to look at #1976 which deals with namespaces in scaffold generator.
-
kmpm July 27th, 2009 @ 11:11 AM
Seems related to #675 "fixtures: consider fixture_class_names to find fixture_class file"
-
José Valim August 15th, 2009 @ 08:47 PM
As Koz said in #1976, modules should not be prefixed with table_names:
module RailsCommerce class Product < ActiveRecord::Base end end RailsCommerce::Product.table_name #=> "products"
So we have two issues:
1) fixtures cannot be loaded when a set_table_name is used in the model
2) fixtures cannot be loaded when using modules (see #2965)Your ticket solves a special condition when both problems happen: you use modules and set the table name in them.
-
Santiago Pastorino February 2nd, 2011 @ 04:42 PM
- State changed from new to open
- Importance changed from to
This issue has been automatically marked as stale because it has not been commented on for at least three months.
The resources of the Rails core team are limited, and so we are asking for your help. If you can still reproduce this error on the 3-0-stable branch or on master, please reply with all of the information you have about it and add "[state:open]" to your comment. This will reopen the ticket for review. Likewise, if you feel that this is a very important feature for Rails to include, please reply with your explanation so we can consider it.
Thank you for all your contributions, and we hope you will understand this step to focus our efforts where they are most helpful.
-
Santiago Pastorino February 2nd, 2011 @ 04:42 PM
- State changed from open to stale
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »
<h2 style="font-size: 14px">Tickets have moved to Github</h2>
The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>
People watching this ticket
Attachments
Referenced by
- 1976 Scaffold generator not working well with namespaced resources Have a look at #1628 which deals with fixtures and namesp...
- 1976 Scaffold generator not working well with namespaced resources I haven't had a look at the patch at #1628 yet, and I'm n...
- 675 fixtures: consider fixture_class_names to find fixture_class file This seems related to #1628 "Loading fixtures for a modul...