Sha256: 969913e50b9363922d1948eac7bf1edcbd2354ad873fc7a609d056a1003050d5
Contents?: true
Size: 943 Bytes
Versions: 29
Compression:
Stored size: 943 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 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
29 entries across 29 versions & 2 rubygems