Flowdock
method

default_fixture_model_name

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: FixtureSet
default_fixture_model_name(fixture_set_name, config = ActiveRecord::Base) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/fixtures.rb, line 407
    def self.default_fixture_model_name(fixture_set_name, config = ActiveRecord::Base) # :nodoc:
      config.pluralize_table_names ?
        fixture_set_name.singularize.camelize :
        fixture_set_name.camelize
    end
Register or log in to add new notes.