method

interpolate_label

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: PrimaryKeyError
interpolate_label() 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/fixture_set/table_row.rb, line 112
        def interpolate_label
          # interpolate the fixture label
          @row.each do |key, value|
            @row[key] = value.gsub("$LABEL", @label.to_s) if value.is_a?(String)
          end
        end
Register or log in to add new notes.