Code Monkey home page Code Monkey logo

Comments (6)

phinze avatar phinze commented on July 24, 2024

I've run into this same problem that I documented in #28 before I saw this. Mine involves using :class => 'ActiveRecord::Base' notation, which I prefer to the slash. Your fix handles this notation as well. +1

from factory_bot.

mlomnicki avatar mlomnicki commented on July 24, 2024

Hey. That issue should be definitely fixed in master.
Here is my patch: http://github.com/mlomnicki/factory_girl/tree/namespaced_models_fix

It find easier to just use String.constantize then reinventing the wheel...

from factory_bot.

phinze avatar phinze commented on July 24, 2024

Awesome, thanks for fixing this.

As for String#constantize, I agree that it's much easier to do that than to pull the Object#const_get dance, but it should be noted that using constantize adds an implicit dependency on ActiveSupport. IMHO the difference between these two lines doesn't warrant the increased coupling.

foo.constantize
foo.split('::').inject(Object) { |o, str| o.const_get(str) }

Looking at the source though, it seems that AS is required in lib/factory_girl.rb already, so I'm not sure where factory_girl depends on it elsewhere.

Just trying to get into the rails3 decoupling spirit. :)

from factory_bot.

mlomnicki avatar mlomnicki commented on July 24, 2024

Good point with decoupling, I'll definitely fix it.

foo.split('::').inject(Object) { |o, str| o.const_get(str) }

Actually it doesn't handle 'admin/user' forms. In my opinion there should be constantize method available in factory_girl. We can use constantize if defined already or implement own otherwise.
Just like here http://github.com/svenfuchs/steam/blob/master/lib/core_ext/ruby/string/camelize.rb

What do you think?

from factory_bot.

phinze avatar phinze commented on July 24, 2024

Yeah that sounds good; just steal rails' implementation unless we already have it available. +1

from factory_bot.

mlomnicki avatar mlomnicki commented on July 24, 2024

thanks tdunn

from factory_bot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.