Anapher/Strive

View on GitHub
src/Services/ConferenceManagement/Strive.Infrastructure.Tests/KeyValue/Scripts/RedisScriptLoaderTests.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Strive.Infrastructure.KeyValue.Redis.Scripts;
using Xunit;

namespace Strive.Infrastructure.Tests.KeyValue.Scripts
{
    public class RedisScriptLoaderTests
    {
        [Fact]
        public void TestScripsLoaded()
        {
            var script = RedisScriptLoader.Load(RedisScript.JoinedParticipantsRepository_RemoveParticipant);
            Assert.NotNull(script);
        }
    }
}