diff Agendas/trunk/src/Agendas.Twitter.Tests/Publicador_tests.cs @ 240:01a9b47185eb

Tests de Twitter, daban en rojo por mensaje fijo (01/10/2011).
author juanjose.montesdeocaarbos
date Wed, 05 Oct 2011 07:41:30 -0300
parents e5959f3405e0
children 5cc1681d3789
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Twitter.Tests/Publicador_tests.cs	Wed Oct 05 07:31:35 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Twitter.Tests/Publicador_tests.cs	Wed Oct 05 07:41:30 2011 -0300
@@ -96,7 +96,7 @@
 			Assert.That(joined, Is.StringContaining("@nelopauselli"));
 
 			Assert.AreEqual(2, twitters.Count());
-			Assert.AreEqual("Se ha agendando el evento Identity Providers Públicos y Empresariales con @carlospeix y @nelopauselli para el 01/10/2011...", twitters.First());
+			Assert.AreEqual(string.Format("Se ha agendando el evento Identity Providers Públicos y Empresariales con @carlospeix y @nelopauselli para el {0}...", inicio.ToString("dd/MM/yyyy")), twitters.First());
 			Assert.AreEqual("...por http://snipr.com/virtualaltnet", twitters.Last());
 
 			adapter.Verify(a => a.Update(It.IsAny<string>(), out message), Times.Exactly(2));
@@ -127,7 +127,7 @@
 				Assert.LessOrEqual(twitter.Length, 140);
 				joined += twitter;
 			}
-			Assert.AreEqual("Se ha agendando el evento Identity Providers Públicos y Empresariales para el 01/10/2011 por http://snipr.com/virtualaltnet", joined);
+            Assert.AreEqual(string.Format("Se ha agendando el evento Identity Providers Públicos y Empresariales para el {0} por http://snipr.com/virtualaltnet", inicio.ToString("dd/MM/yyyy")), joined);
 
 			adapter.Verify(a => a.Update(It.IsAny<string>(), out message), Times.Once());