diff options
author | Chris Schlaeger <chris@linux.com> | 2014-08-28 20:23:38 +0200 |
---|---|---|
committer | Chris Schlaeger <chris@linux.com> | 2014-08-28 20:23:38 +0200 |
commit | 3c32e378c9ffc01c1ed994483571193127a4e6a4 (patch) | |
tree | aaf4d47e8162ca971dfb3e6d9b546f8ccc8f643b /spec/PostRunner_spec.rb | |
parent | a0e09bf3c5d9f78961239cc262d12c1af8d4cff4 (diff) | |
download | postrunner-3c32e378c9ffc01c1ed994483571193127a4e6a4.zip |
Adding support for metric and statute units.
Diffstat (limited to 'spec/PostRunner_spec.rb')
-rw-r--r-- | spec/PostRunner_spec.rb | 65 |
1 files changed, 9 insertions, 56 deletions
diff --git a/spec/PostRunner_spec.rb b/spec/PostRunner_spec.rb index 1fbfd05..9755a7c 100644 --- a/spec/PostRunner_spec.rb +++ b/spec/PostRunner_spec.rb @@ -13,6 +13,7 @@ require 'fileutils' require 'postrunner/Main' +require 'spec_helper' describe PostRunner::Main do @@ -25,62 +26,6 @@ describe PostRunner::Main do stdout.string end - def create_fit_file(name, date) - ts = Time.parse(date) - a = Fit4Ruby::Activity.new({ :timestamp => ts }) - a.total_timer_time = 30 * 60 - a.new_user_profile({ :timestamp => ts, - :age => 33, :height => 1.78, :weight => 73.0, - :gender => 'male', :activity_class => 4.0, - :max_hr => 178 }) - - a.new_event({ :timestamp => ts, :event => 'timer', - :event_type => 'start_time' }) - a.new_device_info({ :timestamp => ts, :device_index => 0 }) - a.new_device_info({ :timestamp => ts, :device_index => 1, - :battery_status => 'ok' }) - 0.upto(a.total_timer_time / 60) do |mins| - ts += 60 - a.new_record({ - :timestamp => ts, - :position_lat => 51.5512 - mins * 0.0008, - :position_long => 11.647 + mins * 0.002, - :distance => 200.0 * mins, - :altitude => 100 + mins * 0.5, - :speed => 3.1, - :vertical_oscillation => 9 + mins * 0.02, - :stance_time => 235.0 * mins * 0.01, - :stance_time_percent => 32.0, - :heart_rate => 140 + mins, - :cadence => 75, - :activity_type => 'running', - :fractional_cadence => (mins % 2) / 2.0 - }) - - if mins > 0 && mins % 5 == 0 - a.new_lap({ :timestamp => ts }) - end - end - a.new_session({ :timestamp => ts }) - a.new_event({ :timestamp => ts, :event => 'recovery_time', - :event_type => 'marker', - :data => 2160 }) - a.new_event({ :timestamp => ts, :event => 'vo2max', - :event_type => 'marker', :data => 52 }) - a.new_event({ :timestamp => ts, :event => 'timer', - :event_type => 'stop_all' }) - a.new_device_info({ :timestamp => ts, :device_index => 0 }) - ts += 1 - a.new_device_info({ :timestamp => ts, :device_index => 1, - :battery_status => 'low' }) - ts += 120 - a.new_event({ :timestamp => ts, :event => 'recovery_hr', - :event_type => 'marker', :data => 132 }) - - a.aggregate - Fit4Ruby.write(name, a) - end - before(:all) do @db_dir = File.join(File.dirname(__FILE__), '.postrunner') FileUtils.rm_rf(@db_dir) @@ -169,5 +114,13 @@ describe PostRunner::Main do postrunner(%w( dump FILE1.FIT )) end + it 'should switch to statute units' do + postrunner(%w( units statute )) + end + + it 'should switch back to metric units' do + postrunner(%w( units metric )) + end + end |