Sha256: 9c730825ac90448c2ecf85e3e6dc732de5b30d85a01b9af0b92e8111980acc24
Contents?: true
Size: 942 Bytes
Versions: 13
Compression:
Stored size: 942 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 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 GoodData::Model::ReferenceBlueprintField do before(:each) do @model_view = MultiJson.load(File.read('./spec/data/wire_models/model_view.json')) @blueprint = GoodData::Model::FromWire.from_wire(@model_view) @dataset = @blueprint.datasets('dataset.opportunityanalysis') @attribute = @dataset.attributes('attr.opportunityanalysis.month') end describe '#dataset' do it 'should return labels on dataset' do expect(@dataset.references.first.dataset.id).to eq 'dataset.opp_records' end end describe '#reference' do it 'should return reference on dataset' do expect(@dataset.references.first.reference).to eq 'dataset.opp_records' end end end
Version data entries
13 entries across 13 versions & 1 rubygems