54 lines
1.6 KiB
Ruby
54 lines
1.6 KiB
Ruby
require "application_system_test_case"
|
|
|
|
class ReservationsTest < ApplicationSystemTestCase
|
|
setup do
|
|
@reservation = reservations(:one)
|
|
end
|
|
|
|
test "visiting the index" do
|
|
visit reservations_url
|
|
assert_selector "h1", text: "Reservations"
|
|
end
|
|
|
|
test "should create reservation" do
|
|
visit reservations_url
|
|
click_on "New reservation"
|
|
|
|
fill_in "Company", with: @reservation.company_id
|
|
fill_in "Customer", with: @reservation.customer_id
|
|
fill_in "Description", with: @reservation.description
|
|
fill_in "End time", with: @reservation.end_time
|
|
fill_in "Place", with: @reservation.place_id
|
|
fill_in "Start time", with: @reservation.start_time
|
|
fill_in "Title", with: @reservation.title
|
|
click_on "Create Reservation"
|
|
|
|
assert_text "Reservation was successfully created"
|
|
click_on "Back"
|
|
end
|
|
|
|
test "should update Reservation" do
|
|
visit reservation_url(@reservation)
|
|
click_on "Edit this reservation", match: :first
|
|
|
|
fill_in "Company", with: @reservation.company_id
|
|
fill_in "Customer", with: @reservation.customer_id
|
|
fill_in "Description", with: @reservation.description
|
|
fill_in "End time", with: @reservation.end_time
|
|
fill_in "Place", with: @reservation.place_id
|
|
fill_in "Start time", with: @reservation.start_time
|
|
fill_in "Title", with: @reservation.title
|
|
click_on "Update Reservation"
|
|
|
|
assert_text "Reservation was successfully updated"
|
|
click_on "Back"
|
|
end
|
|
|
|
test "should destroy Reservation" do
|
|
visit reservation_url(@reservation)
|
|
click_on "Destroy this reservation", match: :first
|
|
|
|
assert_text "Reservation was successfully destroyed"
|
|
end
|
|
end
|