view Agendas/trunk/src/Agendas.Twitter.Tests/Send_twitt_tests.cs @ 298:9bc60d166c8a

Se corrigieron los tests por el cambio de Patrocinador, para que no persista el logo en disco. Se comentó el código de PatrocinadorApiController, que no se utiliza.
author juanjose.montesdeocaarbos
date Sun, 19 Feb 2012 16:00:38 -0300
parents 734d3f0853bf
children
line wrap: on
line source

using System;
using AltNetHispano.Agendas.Twitter;
using NUnit.Framework;

namespace Agendas.Twitter.Tests
{
	[TestFixture]
	public class Send_twitt_tests
	{
		[Test]
		public void Send_twitt()
		{
			var p = new TwitterAdapter();

			string message;
			var r = p.Update("Ejecutando los tests. Hora: " + DateTime.Now, out message);

			Console.WriteLine(message);
			Assert.IsTrue(r);
		}
	}
}