0

Rails で API を作成するのは初めてで、テストを作成しようとしています。

require "spec_helper"

describe "/api/v1/iosapps", :type => :api do


    context "view all apps" do
        let(:url) { "/api/v1/iosapps" }
        it "json" do
            get "#{url}.json"
            iosapps_json = Iosapp.all.to_json
            last_response.body.should eql(iosapps_json)
            last_response.status.should eql(200)
            iosapps = JSON.parse(last_response.body)

            iosapps.any? do |p|
                p["name"] == iosapp.name
            end.should be_true
        end
    end

end

以下のようなエラーが表示されます。これを修正する方法について何かアドバイスはありますか?

Failure/Error: get "#{url}.json"
 ActiveRecord::StatementInvalid:
   Could not find table 'iosapps'
4

1 に答える 1