added IndexHtmlIntegrationFixture

This commit is contained in:
Keivan Beigi
2014-09-01 21:02:55 -07:00
parent c925c0bb24
commit ac465a4f07
3 changed files with 23 additions and 1 deletions
@@ -0,0 +1,18 @@
using System.Net;
using FluentAssertions;
using NUnit.Framework;
namespace NzbDrone.Integration.Test
{
[TestFixture]
public class IndexHtmlIntegrationFixture : IntegrationTest
{
[Test]
public void should_get_index_html()
{
var text = new WebClient().DownloadString(RootUrl);
text.Should().NotBeNullOrWhiteSpace();
}
}
}