mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-08 04:40:54 +00:00
red: added ReadOnlyPagedCollectionTests.TheConstructor.AcceptsAResponseWithANullBody
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Octokit.Internal;
|
||||
using NSubstitute;
|
||||
using Xunit;
|
||||
|
||||
namespace Octokit.Tests.Http
|
||||
{
|
||||
public class ReadOnlyPagedCollectionTests
|
||||
{
|
||||
public class TheConstructor
|
||||
{
|
||||
[Fact]
|
||||
public void AcceptsAResponseWithANullBody()
|
||||
{
|
||||
var response = Substitute.For<IApiResponse<List<string>>>();
|
||||
response.Body.Returns((List<string>)null);
|
||||
|
||||
var exception = Record.Exception(() =>
|
||||
new ReadOnlyPagedCollection<string>(response, uri => Task.FromResult(response)));
|
||||
|
||||
Assert.Null(exception);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user