diff python/tests/utils.txt @ 742:fe71639f1ee7 dev

merge and added function to up-/lower-case strings
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 28 Aug 2015 10:39:15 -0400
parents c35e4a4b199d
children 4b3518f6dd01
line wrap: on
line diff
--- a/python/tests/utils.txt	Fri Aug 28 10:38:08 2015 -0400
+++ b/python/tests/utils.txt	Fri Aug 28 10:39:15 2015 -0400
@@ -1,6 +1,9 @@
 >>> from utils import *
 >>> from moving import Point
 
+>>> upperCaseFirstLetter('mmmm... donuts')
+Mmmm... Donuts
+
 >>> computeChi2([],[])
 0.0
 >>> computeChi2(range(1,10),range(1,10))