# File tests/drivers/mock/api_test.rb, line 66
    def test_it_handles_unsupported_collections
      get_auth_url '/api/no_such_collection'
      last_response.status.should == 404

      with_provider("storage") do
        get_auth_url '/api/instances'
        last_response.status.should == 404
      end
    end