我目前正在为我的所有控制器编写测试,并且遇到了我无法解决的问题。对于我的一个控制器,每个测试都有效(显示、索引、新建、编辑、更新),但由于某种原因,我的 #create 测试无法通过。澄清一下:所有的装置和其他方法都可以正常运行并通过——我的创建方法或对该方法的测试有问题。
据我所知 - 错误可能与respond_to |format|
线路有关,但似乎无法解决。
这是测试:
test "should create captable" do
sign_in @user
post company_captables_url(@company, @captable), params: { captable: { company_id: @captable.company_id, name: "The BEST captable", version: @captable.version } }
assert_response :success
end
这是控制器的方法:
def create
@captable = @company.captables.new(captable_params)
respond_to do |format|
if @captable.save
format.html { redirect_to [@company, @captable], notice: 'Captable was successfully created.' }
format.json { render :show, status: :created, location: @captable }
else
format.html { render :new }
format.json { render json: @captable.errors, status: :unprocessable_entity }
end
end
end
运行此测试时出错:
Error:
CaptablesControllerTest#test_should_create_captable:
ActionController::UnknownFormat: ActionController::UnknownFormat
app/controllers/captables_controller.rb:24:in `create'
test/controllers/captables_controller_test.rb:38:in `block in <class:CaptablesControllerTest>'
bin/rails test test/controllers/captables_controller_test.rb:36