mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* it just works * why hasn't it catastrophically failed yet * not just gotta do the ui oh god the ui * that was easier than expected * a devious misdirection * touchups * svin * loc+fix * touchups * shitfix * touchups x3 * for further use * i hate this piece of shit engine * touchups x4 * ribbit also i'm retarded x2 * big tard energy * bb * rabbitson * ? * forgor * k * whoops * fug
29 lines
932 B
C#
29 lines
932 B
C#
using System.Numerics;
|
|
using Content.Server.DeviceNetwork;
|
|
using Content.Server.DeviceNetwork.Components;
|
|
using Content.Server.DeviceNetwork.Systems;
|
|
using Content.Shared._White.CustomGhostSystem;
|
|
using Content.Shared.DeviceNetwork;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.IoC;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Map.Components;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.IntegrationTests.Tests._White
|
|
{
|
|
[TestFixture]
|
|
public sealed class CustomGhostDefaultTest
|
|
{
|
|
[Test]
|
|
public async Task CustomGhostDefaultPrototypePresent()
|
|
{
|
|
await using var pair = await PoolManager.GetServerClient();
|
|
var server = pair.Server;
|
|
var prototypeManager = server.ResolveDependency<IPrototypeManager>();
|
|
Assert.That(prototypeManager.HasIndex<CustomGhostPrototype>("default"));
|
|
await pair.CleanReturnAsync();
|
|
}
|
|
}
|
|
}
|