I have an API-only Rails 5 app.
My customers_controller_test fails with
ActionView::MissingTemplate: Missing template api/v1/customers/show, application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby, :jbuilder]
I can't understand why.
The controller looks like this (Scaffold)
# POST /customers
# POST /customers.json
def create
@customer = Customer.new(customer_params)
if @customer.save
render :show, status: :created, location: api_v1_customer_url(@customer)
else
render json: @customer.errors, status: :unprocessable_entity
end
end
# PATCH/PUT /customers/1
# PATCH/PUT /customers/1.json
def update
if @customer.update(customer_params)
render :show, status: :ok, location: api_v1_customer_url(@customer)
else
render json: @customer.errors, status: :unprocessable_entity
end
end
So why does POST return HTML when PUT correctly returns JSON?
The test passes fine with this change:
# POST /customers
# POST /customers.json
def create
@customer = Customer.new(customer_params)
if @customer.save
render json: 'show', status: :created, location: api_v1_customer_url(@customer)
else
render json: @customer.errors, status: :unprocessable_entity
end
end
Is anyone able to explain that?
Your code is trying to render a template