8784: Fix test for latest firefox.
[arvados.git] / services / api / test / performance / links_index_test.rb
1 require 'test_helper'
2 require 'rails/performance_test_help'
3
4 class IndexTest < ActionDispatch::PerformanceTest
5   def test_links_index
6     get '/arvados/v1/links', {format: :json}, auth(:admin)
7   end
8   def test_links_index_with_filters
9     get '/arvados/v1/links', {format: :json, filters: [%w[head_uuid is_a arvados#collection]].to_json}, auth(:admin)
10   end
11   def test_collections_index
12     get '/arvados/v1/collections', {format: :json}, auth(:admin)
13   end
14 end