mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-22 15:00:35 -04:00
17 lines
266 B
C#
17 lines
266 B
C#
using System.Linq;
|
|
using Xunit;
|
|
|
|
namespace Kyoo.Tests
|
|
{
|
|
public class RepositoryTests
|
|
{
|
|
[Fact]
|
|
public void Get_Test()
|
|
{
|
|
TestContext context = new();
|
|
using DatabaseContext database = context.New();
|
|
|
|
Assert.Equal(1, database.Shows.Count());
|
|
}
|
|
}
|
|
} |