Sha256: a82e37d6736db720ded5bab6332dff2e9d9401f68ffbf198c76a940a8cc66369

Contents?: true

Size: 1.73 KB

Versions: 21

Compression:

Stored size: 1.73 KB

Contents

require "application_system_test_case"

<% module_namespacing do -%>
class <%= class_name.pluralize %>Test < ApplicationSystemTestCase
  setup do
    @<%= singular_table_name %> = <%= fixture_name %>(:one)
  end

  test "visiting the index" do
    visit <%= plural_table_name %>_url
    assert_selector "h1", text: "<%= human_name.pluralize %>"
  end

  test "should create <%= human_name.downcase %>" do
    visit <%= plural_table_name %>_url
    click_on "New <%= human_name.downcase %>"

    <%- attributes_hash.each do |attr, value| -%>
    <%- if boolean?(attr) -%>
    check "<%= attr.humanize %>" if <%= value %>
    <%- else -%>
    fill_in "<%= attr.humanize %>", with: <%= value %>
    <%- end -%>
    <%- end -%>
    click_on "Create <%= human_name %>"

    assert_text "<%= human_name %> was successfully created"
    click_on "Back"
  end

  test "should update <%= human_name %>" do
    visit <%= singular_table_name %>_url(@<%= singular_table_name %>)
    click_on "Edit this <%= human_name.downcase %>", match: :first

    <%- attributes_hash.each do |attr, value| -%>
    <%- if boolean?(attr) -%>
    check "<%= attr.humanize %>" if <%= value %>
    <%- elsif datetime?(attr) || time?(attr) -%>
    fill_in "<%= attr.humanize %>", with: <%= value %>.to_s
    <%- else -%>
    fill_in "<%= attr.humanize %>", with: <%= value %>
    <%- end -%>
    <%- end -%>
    click_on "Update <%= human_name %>"

    assert_text "<%= human_name %> was successfully updated"
    click_on "Back"
  end

  test "should destroy <%= human_name %>" do
    visit <%= singular_table_name %>_url(@<%= singular_table_name %>)
    click_on "Destroy this <%= human_name.downcase %>", match: :first

    assert_text "<%= human_name %> was successfully destroyed"
  end
end
<% end -%>

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
railties-8.0.1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-8.0.0.1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.2.1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-8.0.0 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.2 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-8.0.0.rc2 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.1.2 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-8.0.0.rc1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.1.1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-8.0.0.beta1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
omg-railties-8.0.0.alpha9 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
omg-railties-8.0.0.alpha8 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
omg-railties-8.0.0.alpha7 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
omg-railties-8.0.0.alpha4 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
omg-railties-8.0.0.alpha3 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.0 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.0.rc1 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.0.beta3 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt
railties-7.2.0.beta2 lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt