Sha256: 89fe02d10cb961aabad900ea613f5c8fd924ad8f0340b31e1a5b24dcd3b4b82b

Contents?: true

Size: 407 Bytes

Versions: 2

Compression:

Stored size: 407 Bytes

Contents

class Views::ComplexHelpersSystemSpec::FormForTest < Fortitude::Widgets::Html5
  def content
    text "OUTSIDE_BEFORE"
    form_for :person do |f|
      text "INSIDE_BEFORE"
      text "FIRST: "
      f.text_field :first_name
      text "MIDDLE: "
      f.send(:text_field, :middle_name)
      text "LAST: "
      f.text_field :last_name
      text "INSIDE_AFTER"
    end
    text "OUTSIDE_AFTER"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fortitude-0.9.6-java spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/form_for_test.rb
fortitude-0.9.6 spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/form_for_test.rb