summaryrefslogtreecommitdiffstats
path: root/test/day_entry_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/day_entry_test.rb')
-rw-r--r--test/day_entry_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/day_entry_test.rb b/test/day_entry_test.rb
index 5c9b37d..c27ffda 100644
--- a/test/day_entry_test.rb
+++ b/test/day_entry_test.rb
@@ -33,4 +33,17 @@ class DayEntryTest < Test::Unit::TestCase
end
end
+ should "append to an existing note" do
+ entry = HCl::DayEntry.new(:id => '1', :notes => 'yourmom.', :hours => '1.0')
+ HCl::DayEntry.stubs(:post)
+ entry.append_note('hi world')
+ assert_equal 'yourmom. hi world', entry.notes
+ end
+
+ should "append to an undefined note" do
+ 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