Files
self 692dcb3129 refactor: move Supertest into TribeOne plugin namespace
Use TribeOne.TribesPlugin.Supertest modules throughout the fixture plugin and update manifest, tests, and migration references accordingly.
2026-05-26 01:13:52 +02:00

9 lines
331 B
Elixir

defmodule TribeOne.TribesPlugin.Supertest.SyncLaneTest do
use ExUnit.Case, async: true
test "supertest sync resources declare the control lane" do
assert AshNostrSync.Info.lane(TribeOne.TribesPlugin.Supertest.Case) == :control
assert AshNostrSync.Info.lane(TribeOne.TribesPlugin.Supertest.Event) == :control
end
end