Sha256: 9024d22547787ed3118da82a2b197df188e1b24c818a91928f63368c1fcbd16f

Contents?: true

Size: 490 Bytes

Versions: 6

Compression:

Stored size: 490 Bytes

Contents

class Views::ComplexHelpersSystemSpec::NestingTest < Fortitude::Widgets::Html5
  def content
    text "OUTSIDE_BEFORE"
    form_for :person do |f|
      text "INSIDE_FORM_BEFORE"
      text "FIRST: "
      f.text_field :first_name

      f.fields_for :whatsit do |w|
        text "WHATSIT BAR: "
        w.text_field :bar
        text "AFTER WHATSIT BAR"
      end

      text "LAST: "
      f.text_field :last_name
      text "INSIDE_FORM_AFTER"
    end
    text "OUTSIDE_AFTER"
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fortitude-0.9.6-java spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/nesting_test.rb
fortitude-0.9.6 spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/nesting_test.rb
fortitude-0.9.5-java spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/nesting_test.rb
fortitude-0.9.5 spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/nesting_test.rb
fortitude-0.9.4-java spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/nesting_test.rb
fortitude-0.9.4 spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/nesting_test.rb