Merge branch 'explorer'
[arvados.git] / services / api / test / integration / collections_api_test.rb
1 require 'test_helper'
2
3 class CollectionsApiTest < ActionDispatch::IntegrationTest
4   fixtures :all
5
6   test "should get index" do
7     get "/orvos/v1/collections", :format => :json
8     @json_response ||= ActiveSupport::JSON.decode @response.body
9     assert_response :success
10     assert_equal "orvos#collectionList", @json_response['kind']
11   end
12
13 end