Update majic to 1.2.0

This commit is contained in:
Lain Soykaf 2026-05-13 18:39:40 +04:00
commit 9e16332d9d
No known key found for this signature in database
4 changed files with 21 additions and 2 deletions

View file

@ -0,0 +1,16 @@
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.DependencyVersionTest do
use ExUnit.Case, async: true
test "uses majic 1.2" do
majic_version =
:majic
|> Application.spec(:vsn)
|> to_string()
assert Version.match?(majic_version, "~> 1.2")
end
end