11 lines
319 B
C#
11 lines
319 B
C#
using DotNet.Testcontainers.Containers;
|
|
|
|
namespace MycroForge.CLI.Tests.Extensions;
|
|
|
|
internal static class ContainerInterfaceExtensions
|
|
{
|
|
public static Task<byte[]> ReadFileFromRootAsync(this IContainer container, string file)
|
|
{
|
|
return container.ReadFileAsync($"/test/todo/{file}");
|
|
}
|
|
} |