Sha256: 78faa6c842066a619d8baa49512782d54bb875e3690b7f9d5d1d4da9ef759976

Contents?: true

Size: 449 Bytes

Versions: 2

Compression:

Stored size: 449 Bytes

Contents

require 'gooddata/commands/user'

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

  after(:each) do
    GoodData.disconnect
  end

  it "Is Possible to create GoodData::Command::User 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
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gooddata-0.6.3 spec/unit/commands/command_user_spec.rb
gooddata-0.6.2 spec/unit/commands/command_user_spec.rb