Sha256: d1d75fb9a91d1c89cd8e835dd7346dd2bdcdf62cba16a65de9f830ae3619b2b2

Contents?: true

Size: 870 Bytes

Versions: 30

Compression:

Stored size: 870 Bytes

Contents

require "application_system_test_case"

class FrontsTest < ApplicationSystemTestCase
  setup do
    @front = fronts(:one)
  end

  test "visiting the index" do
    visit fronts_url
    assert_selector "h1", text: "Fronts"
  end

  test "creating a Front" do
    visit fronts_url
    click_on "New Front"

    fill_in "Index", with: @front.index
    click_on "Create Front"

    assert_text "Front was successfully created"
    click_on "Back"
  end

  test "updating a Front" do
    visit fronts_url
    click_on "Edit", match: :first

    fill_in "Index", with: @front.index
    click_on "Update Front"

    assert_text "Front was successfully updated"
    click_on "Back"
  end

  test "destroying a Front" do
    visit fronts_url
    page.accept_confirm do
      click_on "Destroy", match: :first
    end

    assert_text "Front was successfully destroyed"
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
keppler-2.1.22 installer/core/test/system/fronts_test.rb
keppler-2.1.21 installer/core/test/system/fronts_test.rb
keppler-2.1.20 installer/core/test/system/fronts_test.rb
keppler-2.1.19 installer/core/test/system/fronts_test.rb
keppler-2.1.18 installer/core/test/system/fronts_test.rb
keppler-2.1.17 installer/core/test/system/fronts_test.rb
keppler-2.1.16 installer/core/test/system/fronts_test.rb
keppler-2.1.15 installer/core/test/system/fronts_test.rb
keppler-2.1.14 installer/core/test/system/fronts_test.rb
keppler-2.1.13 installer/core/test/system/fronts_test.rb
keppler-2.1.12 installer/core/test/system/fronts_test.rb
keppler-2.1.11 installer/core/test/system/fronts_test.rb
keppler-2.1.10 installer/core/test/system/fronts_test.rb
keppler-2.1.9 installer/core/test/system/fronts_test.rb
keppler-2.1.8 installer/core/test/system/fronts_test.rb
keppler-2.1.7 installer/core/test/system/fronts_test.rb
keppler-2.1.6 installer/core/test/system/fronts_test.rb
keppler-2.1.5 installer/core/test/system/fronts_test.rb
keppler-2.1.4 installer/core/test/system/fronts_test.rb
keppler-2.1.3 installer/core/test/system/fronts_test.rb