Sha256: c54cc6b43ecc2c918becb26e2a2f89b770c6b6ffab51e080417b01e07055a280

Contents?: true

Size: 704 Bytes

Versions: 5

Compression:

Stored size: 704 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/commands/user'

describe GoodData::Command::User do
  before(:each) do
    @client = ConnectionHelper.create_default_connection
  end

  after(:each) do
    @client.disconnect
  end

  it "Is Possible to create GoodData::Command::Membership instance" do
    cmd = GoodData::Command::User.new()
    cmd.should be_a(GoodData::Command::User)
  end

  describe "#show" do
    it "Shows profile" do
      GoodData::Command::User.show(:client => @client)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gooddata-0.6.26 spec/unit/commands/command_user_spec.rb
gooddata-0.6.25 spec/unit/commands/command_user_spec.rb
gooddata-0.6.24 spec/unit/commands/command_user_spec.rb
gooddata-0.6.23 spec/unit/commands/command_user_spec.rb
gooddata-0.6.22 spec/unit/commands/command_user_spec.rb