ensl.org/spec/controllers/api/v1/maps_controller_spec.rb
2020-03-14 21:10:24 +02:00

24 lines
432 B
Ruby
Executable file

require 'rails_helper'
module Api
module V1
end
end
describe Api::V1::MapsController do
before do
request.accept = "application/json"
end
describe '#index' do
let!(:map) { Map.new() }
it "returns a list of maps" do
get :index
expect(response).to be_success
expect(json["maps"].length).to eq(1)
json_map = json["maps"][0]
expect(json_map["id"]).to eq(map.id)
end
end
end