Sha256: 99ed3e5e4e4fc10468a45062199090d9fae489fbd537d4c38aef1683b8f89795
Contents?: true
Size: 953 Bytes
Versions: 2
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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fit_parser-0.0.5 | spec/file/definition_spec.rb |
fit_parser-0.0.4 | spec/file/definition_spec.rb |