mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
04c66e1bea
- Upgrade RSpec to 3.3 - Auto formatted existing specs - Fixes broken test assertions - Update capistrano rbenv_ruby to target 2.2.2 - Added test-unit as test dependency as it has been removed form ruby 2.2
20 lines
400 B
Ruby
20 lines
400 B
Ruby
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
|
|
|