Sha256: 341abe533e972770bab5e214c93325670d5983257cc7804f6c6b8e03a07ff781

Contents?: true

Size: 1.23 KB

Versions: 24

Compression:

Stored size: 1.23 KB

Contents

require "application_system_test_case"

module KepplerFrontend
  class ThemesTest < ApplicationSystemTestCase
    setup do
      @theme = keppler_frontend_themes(:one)
    end

    test "visiting the index" do
      visit themes_url
      assert_selector "h1", text: "Themes"
    end

    test "creating a Theme" do
      visit themes_url
      click_on "New Theme"

      fill_in "Active", with: @theme.active
      fill_in "Deleted At", with: @theme.deleted_at
      fill_in "Name", with: @theme.name
      fill_in "Position", with: @theme.position
      click_on "Create Theme"

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

    test "updating a Theme" do
      visit themes_url
      click_on "Edit", match: :first

      fill_in "Active", with: @theme.active
      fill_in "Deleted At", with: @theme.deleted_at
      fill_in "Name", with: @theme.name
      fill_in "Position", with: @theme.position
      click_on "Update Theme"

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

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

      assert_text "Theme was successfully destroyed"
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

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