Files
csharp/tests/KubernetesClient.Tests/ItemsEnumTests.cs
Boshi Lian f4a638b1fe shortcut for iitem (#883)
* shortcut for iitem

* syntax guard
2022-09-21 12:11:18 -07:00

23 lines
366 B
C#

using Xunit;
using k8s.Models;
namespace k8s.Tests;
public class ItemsEnumTests
{
[Fact]
public void EnsureIItemsEnumerable()
{
var pods = new V1PodList
{
Items = new[] { new V1Pod() },
};
// ensure no sytax err
foreach (var pod in pods)
{
Assert.NotNull(pod);
}
}
}