0
0
Fork 0

Refactor and spec coverage for api/v1/timelines actions (#3482)

This commit is contained in:
Matt Jankowski 2017-05-31 14:27:17 -04:00 committed by Eugen Rochko
parent bd669e3907
commit d6774d2ca3
7 changed files with 183 additions and 156 deletions

View file

@ -0,0 +1,20 @@
require 'rails_helper'
describe 'API routes' do
describe 'Timeline routes' do
it 'routes to home timeline' do
expect(get('/api/v1/timelines/home')).
to route_to('api/v1/timelines/home#show')
end
it 'routes to public timeline' do
expect(get('/api/v1/timelines/public')).
to route_to('api/v1/timelines/public#show')
end
it 'routes to tag timeline' do
expect(get('/api/v1/timelines/tag/test')).
to route_to('api/v1/timelines/tag#show', id: 'test')
end
end
end

View file

@ -1,18 +0,0 @@
require 'rails_helper'
describe 'API timeline routes' do
it 'routes to home timeline' do
expect(get('/api/v1/timelines/home')).
to route_to('api/v1/timelines/home#show')
end
it 'routes to public timeline' do
expect(get('/api/v1/timelines/public')).
to route_to('api/v1/timelines/public#show')
end
it 'routes to tag timeline' do
expect(get('/api/v1/timelines/tag/test')).
to route_to('api/v1/timelines/tag#show', id: 'test')
end
end