44 lines
902 B
Ruby
44 lines
902 B
Ruby
|
require "application_system_test_case"
|
||
|
|
||
|
class PastesTest < ApplicationSystemTestCase
|
||
|
setup do
|
||
|
@paste = pastes(:one)
|
||
|
end
|
||
|
|
||
|
test "visiting the index" do
|
||
|
visit pastes_url
|
||
|
assert_selector "h1", text: "Pastes"
|
||
|
end
|
||
|
|
||
|
test "creating a Paste" do
|
||
|
visit pastes_url
|
||
|
click_on "New Paste"
|
||
|
|
||
|
fill_in "Search pastes", with: @paste.search_pastes
|
||
|
click_on "Create Paste"
|
||
|
|
||
|
assert_text "Paste was successfully created"
|
||
|
click_on "Back"
|
||
|
end
|
||
|
|
||
|
test "updating a Paste" do
|
||
|
visit pastes_url
|
||
|
click_on "Edit", match: :first
|
||
|
|
||
|
fill_in "Search pastes", with: @paste.search_pastes
|
||
|
click_on "Update Paste"
|
||
|
|
||
|
assert_text "Paste was successfully updated"
|
||
|
click_on "Back"
|
||
|
end
|
||
|
|
||
|
test "destroying a Paste" do
|
||
|
visit pastes_url
|
||
|
page.accept_confirm do
|
||
|
click_on "Destroy", match: :first
|
||
|
end
|
||
|
|
||
|
assert_text "Paste was successfully destroyed"
|
||
|
end
|
||
|
end
|