method

respond_to_missing?

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: ActiveRecord::TestFixtures
respond_to_missing?(name, include_private = false) private

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/test_fixtures.rb, line 282
      def respond_to_missing?(name, include_private = false)
        if include_private && fixture_sets.key?(name.to_s)
          true
        else
          super
        end
      end
Register or log in to add new notes.