summaryrefslogtreecommitdiff
path: root/spec/ActivitySummary_spec.rb
blob: 4e92017b51200b0bb8183019f98731b5b0ea0296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env ruby -w
# encoding: UTF-8
#
# = PostRunner_spec.rb -- PostRunner - Manage the data from your Garmin sport devices.
#
# Copyright (c) 2014 by Chris Schlaeger <cs@taskjuggler.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#

require 'postrunner/ActivitySummary'
require 'spec_helper'

describe PostRunner::ActivitySummary do

  before(:each) do
    @as = PostRunner::ActivitySummary.new(
      create_fit_activity('2014-08-26-19:00', 30), 'test', :metric)
  end

  it 'should create a metric summary' do
    @as.to_s #TODO: Fix aggregation first
  end

end