mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
added IndexHtmlIntegrationFixture
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user