about summary refs log tree commit diff
path: root/spec/routing/api_timelines_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/routing/api_timelines_spec.rb')
-rw-r--r--spec/routing/api_timelines_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/routing/api_timelines_spec.rb b/spec/routing/api_timelines_spec.rb
deleted file mode 100644
index 31717209f..000000000
--- a/spec/routing/api_timelines_spec.rb
+++ /dev/null
@@ -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