# HG changeset patch # User juanjose.montesdeocaarbos # Date 1317812241 10800 # Node ID 5cc1681d3789e122d770e69f62fe87abde0c79af # Parent a7daa939ef0c1cf059413d1fb42e9adf4991e8b8# Parent b43dc14886e38fc5ef009eb063503c333e44f63e Combinar diff -r b43dc14886e3 -r 5cc1681d3789 Agendas/trunk/src/Agendas.Repositories.NHibernate/EventoRepository.cs --- a/Agendas/trunk/src/Agendas.Repositories.NHibernate/EventoRepository.cs Tue Oct 04 21:59:40 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Repositories.NHibernate/EventoRepository.cs Wed Oct 05 07:57:21 2011 -0300 @@ -19,7 +19,7 @@ Session.Delete(evento); } - public Evento Get(Guid vanId) + public new Evento Get(Guid vanId) { return Session.Get(vanId); } diff -r b43dc14886e3 -r 5cc1681d3789 Agendas/trunk/src/Agendas.Twitter.Tests/Publicador_tests.cs --- a/Agendas/trunk/src/Agendas.Twitter.Tests/Publicador_tests.cs Tue Oct 04 21:59:40 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Twitter.Tests/Publicador_tests.cs Wed Oct 05 07:57:21 2011 -0300 @@ -98,7 +98,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(), out message), Times.Exactly(2)); @@ -129,7 +129,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(), out message), Times.Once()); diff -r b43dc14886e3 -r 5cc1681d3789 Agendas/trunk/src/Agendas.Web.Tests/Agendas.Web.Tests.csproj --- a/Agendas/trunk/src/Agendas.Web.Tests/Agendas.Web.Tests.csproj Tue Oct 04 21:59:40 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Web.Tests/Agendas.Web.Tests.csproj Wed Oct 05 07:57:21 2011 -0300 @@ -31,7 +31,9 @@ 4 - + + ..\packages\Moq.4.0.10827\lib\NET40\Moq.dll + ..\packages\NHibernate.Castle.3.1.0.4000\lib\Net35\NHibernate.ByteCode.Castle.dll @@ -85,6 +87,9 @@ Always + + +