mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 03:55:55 +00:00
22 lines
418 B
C#
22 lines
418 B
C#
using System.Net;
|
|
using Xunit;
|
|
|
|
using static Octokit.Internal.TestSetup;
|
|
|
|
namespace Octokit.Tests.Http
|
|
{
|
|
public class ResponseTests
|
|
{
|
|
public class TheConstructor
|
|
{
|
|
[Fact]
|
|
public void InitializesAllRequiredProperties()
|
|
{
|
|
var r = CreateResponse(HttpStatusCode.OK);
|
|
|
|
Assert.NotNull(r.Headers);
|
|
}
|
|
}
|
|
}
|
|
}
|