Sha256: bc959dafbf330d99473044c67ed8c483383f43b8ee50c3003cf157a2279f320f
Contents?: true
Size: 602 Bytes
Versions: 1
Compression:
Stored size: 602 Bytes
Contents
require 'spec_helper' require 'conceptql/operators/cpt' describe ConceptQL::Operators::Cpt do it_behaves_like(:standard_vocabulary_operator) subject do described_class.new end describe '#table' do it 'should be procedure_occurrence' do expect(subject.table).to eq(:procedure_occurrence) end end describe '#concept_column' do it 'should be procedure_concept_id' do expect(subject.concept_column).to eq(:procedure_concept_id) end end describe '#vocabulary_id' do it 'should be 4' do expect(subject.vocabulary_id).to eq(4) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
conceptql-0.2.0 | spec/conceptql/operators/cpt_spec.rb |