mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-07-31 16:16:26 +00:00
Reorganize mafiabot source files from nested mafiabot_core/ subdirectory to root-level structure to match the original file layout. This includes: - src/: Core Ada source files (engine, daemons, network, payloads) - config/: Bot configuration modules - tests/: Test suites The incorrect subdirectory structure has been removed and replaced with the proper root-level organization.
13 lines
342 B
Ada
13 lines
342 B
Ada
pragma Profile (Jorvik);
|
|
pragma SPARK_Mode (Off); -- Test harness: Off; prove the units, not the runner.
|
|
|
|
with Engine;
|
|
with Economy;
|
|
|
|
procedure Engine_Tests is
|
|
Registry : Engine.Daemon_Registry;
|
|
begin
|
|
Engine.Initialize (Registry);
|
|
pragma Assert (for all D in Engine.Daemon_Kind => Registry (D) = Engine.Stopped);
|
|
end Engine_Tests;
|