mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
504 B
C#
18 lines
504 B
C#
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace Wabbajack.Common.Test
|
|
{
|
|
public class HttpClientTests
|
|
{
|
|
[Fact]
|
|
public async Task DoesntReuseHttpMessages()
|
|
{
|
|
var client = new Common.Http.Client();
|
|
// If we reuse the HTTP message this will throw a invalid operation exception
|
|
await Assert.ThrowsAsync<HttpRequestException>(async () => await client.GetAsync("http://blerg.blaz.bloz.buz"));
|
|
}
|
|
}
|
|
}
|