/home/lsiden/.rvm/gems/ruby/1.9.1/gems/extlib-0.9.15/lib/extlib/inflection.rb:104:in `constantize': uninitialized constant Comment (NameError)
This is happening in spec/dm-polymorphic_spec.rb on line 27, in the definition of class Post. Clearly, class Comment has just been defined.
Even if I put: "puts Object::Comment" immediately after the class Comment definition I'll get the same message. I wonder if it's because classes defined inside of Spec::describe don't get defined in Object? I don't have enough experience to tell whether this is the usual way of testing classes. Can someone shed some light?