- Increase coverage to exercise all parts of each action - Move into namespace to share common code - Misc refactor of each action for smaller methods, simpler code
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			477 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			477 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
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
 |