数据显示在视图中,需要进行验证....
答案 0 :(得分:1)
我会写这样的东西
require "rails_helper"
RSpec.describe 'Value integration', :type => :request do
it 'returns the correct number of items' do
get 'value.json'
expect(JSON.parse(response.body)).to have(2).items
end
end
请注意,这是一个request spec,controller spec可能是更好的选择,但如果不知道有关控制器的内部信息,我将无法为您编写整个文件。