mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 21:10:54 +00:00
19 lines
399 B
Ruby
Executable file
19 lines
399 B
Ruby
Executable file
require "spec_helper"
|
|
|
|
describe Api::V1::MapsController do
|
|
before do
|
|
request.accept = "application/json"
|
|
end
|
|
|
|
describe "#index" do
|
|
let!(:map) { create :map }
|
|
|
|
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
|