Sha256: cdf2610cab0764b50b624a8b185f06e6e54dda89b5c1df25dd851013468441ff
Contents?: true
Size: 792 Bytes
Versions: 29
Compression:
Stored size: 792 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. require 'gooddata' describe 'Create project using GoodData client', :constraint => 'slow' do before(:all) do @client = ConnectionHelper.create_default_connection end after(:all) do @client.disconnect end it 'Should create project using GoodData::Rest::Client#create_project' do project_title = 'Test #create_project' project = @client.create_project(:title => project_title, :auth_token => ConnectionHelper::GD_PROJECT_TOKEN, environment: ProjectHelper::ENVIRONMENT) expect(project.title).to eq(project_title) project.delete end end
Version data entries
29 entries across 29 versions & 2 rubygems