50 lines
1.1 KiB
Ruby
50 lines
1.1 KiB
Ruby
require 'test_helper'
|
|
|
|
class PlacesControllerTest < ActionController::TestCase
|
|
setup do
|
|
@place = places(:one)
|
|
end
|
|
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:places)
|
|
end
|
|
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create place" do
|
|
assert_difference('Place.count') do
|
|
post :create, place: { delivery_price: @place.delivery_price, name: @place.name, postal_code: @place.postal_code }
|
|
end
|
|
|
|
assert_redirected_to place_path(assigns(:place))
|
|
end
|
|
|
|
test "should show place" do
|
|
get :show, id: @place
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get :edit, id: @place
|
|
assert_response :success
|
|
end
|
|
|
|
test "should update place" do
|
|
patch :update, id: @place, place: { delivery_price: @place.delivery_price, name: @place.name, postal_code: @place.postal_code }
|
|
assert_redirected_to place_path(assigns(:place))
|
|
end
|
|
|
|
test "should destroy place" do
|
|
assert_difference('Place.count', -1) do
|
|
delete :destroy, id: @place
|
|
end
|
|
|
|
assert_redirected_to places_path
|
|
end
|
|
end
|