public async Task GetAllForCurrentAsync_Always_CallsGitHubRepositoryClient()
        {
            await _sut.GetAllForCurrentAsync();

            _repositoriesClientMock.Verify(x => x.GetAllForUser(_user.Username), Times.Once);
        }