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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
require 'test_helper'
class DayEntryTest < Test::Unit::TestCase
def test_from_xml
entries = HCl::DayEntry.from_xml(<<-EOD)
<daily>
<for_day type="date">Wed, 18 Oct 2006</for_day>
<day_entries>
<day_entry>
<id type="integer">195168</id>
<client>Iridesco</client>
<project>Harvest</project>
<task>Backend Programming</task>
<hours type="float">2.06</hours>
<notes>Test api support</notes>
<timer_started_at type="datetime">
Wed, 18 Oct 2006 09:53:06 -0000
</timer_started_at>
<created_at type="datetime">Wed, 18 Oct 2006 09:53:06 -0000</created_at>
</day_entry>
</day_entries>
</daily>
EOD
assert_equal 1, entries.size
{
:project => 'Harvest',
:client => 'Iridesco',
:task => 'Backend Programming',
:notes => 'Test api support',
:hours => '2.06',
}.each do |method, value|
assert_equal value, entries.first.send(method)
end
end
def test_append_note
entry = HCl::DayEntry.new(:id => '1', :notes => 'yourmom.', :hours => '1.0')
HCl::DayEntry.stubs(:post)
entry.append_note('hi world')
assert_equal "yourmom.\nhi world", entry.notes
end
def test_append_note_to_empty
entry = HCl::DayEntry.new(:id => '1', :notes => nil, :hours => '1.0')
HCl::DayEntry.stubs(:post)
entry.append_note('hi world')
assert_equal 'hi world', entry.notes
end
end
|