Sha256: 275d4048e114afdfd1045618b7714fc5299a3549e63bab662fee2affc03f6eb6
Contents?: true
Size: 953 Bytes
Versions: 1
Compression:
Stored size: 953 Bytes
Contents
require 'spec_helper' describe FitParser::File::Definition do context 'given a sample definition message' do describe '.read' do subject do described_class.read example_file('record/message/definition') end its(:architecture) { should == 0 } its(:global_message_number) { should == 0 } its(:field_count) { should == 6 } it { expect(subject.fields.size).to eq(subject.field_count) } its(:record_type) { should == :definition } it 'returns the real type for fields' do expect(subject.fields[0].real_type).to be == :uint32z expect(subject.fields[1].real_type).to be == :date_time expect(subject.fields[2].real_type).to be == :manufacturer expect(subject.fields[3].real_type).to be == :uint16 # product expect(subject.fields[4].real_type).to be == :uint16 # number expect(subject.fields[5].real_type).to be == :file end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fit_parser-0.0.6 | spec/file/definition_spec.rb |