Sha256: 989fefa288c08e91c67fce92ccc6685dedb2e7c47647bfa37c0684ad733b2c56

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

require "application_system_test_case"

class CookieChangesTest < ApplicationSystemTestCase
  setup do
    @cookie_change = cookie_changes(:one)
  end

  test "visiting the index" do
    visit cookie_changes_url
    assert_selector "h1", text: "Cookie Changes"
  end

  test "creating a Cookie change" do
    visit cookie_changes_url
    click_on "New Cookie Change"

    fill_in "Identifier", with: @cookie_change.identifier
    fill_in "Value", with: @cookie_change.value
    click_on "Create Cookie change"

    assert_text "Cookie change was successfully created"
    click_on "Back"
  end

  test "updating a Cookie change" do
    visit cookie_changes_url
    click_on "Edit", match: :first

    fill_in "Identifier", with: @cookie_change.identifier
    fill_in "Value", with: @cookie_change.value
    click_on "Update Cookie change"

    assert_text "Cookie change was successfully updated"
    click_on "Back"
  end

  test "destroying a Cookie change" do
    visit cookie_changes_url
    page.accept_confirm do
      click_on "Destroy", match: :first
    end

    assert_text "Cookie change was successfully destroyed"
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
jester-data-8.0.0 test/system/cookie_changes_test.rb
ezii-os-5.2.1 test/system/cookie_changes_test.rb
ezii-os-2.0.1 test/system/cookie_changes_test.rb
ezii-os-1.1.0 test/system/cookie_changes_test.rb
ezii-os-1.0.0 test/system/cookie_changes_test.rb