Add 01-distribution.rakutest

This commit is contained in:
Aoran Zeng 2025-07-21 04:40:15 +08:00
parent e628908baf
commit 4197e6769f
No known key found for this signature in database
GPG Key ID: 8F8BA8488E10ED98

View File

@ -0,0 +1,27 @@
#!/usr/bin/env raku
# ---------------------------------------------------------------
# SPDX-License-Identifier: GPL-3.0-or-later
# ---------------------------------------------------------------
# Test File : 01-distribution.rakutest
# Test Authors : Aoran Zeng <ccmywish@qq.com>
# Created On : <2025-07-21>
# Last Modified : <2025-07-21>
#
# $(cwd) 为 test/ 时:
#
# raku ./01-distribution.rakutest
# ---------------------------------------------------------------
use lib '../lib';
use Test;
use Test::META;
use-ok 'Rawstr4c::Parser';
use-ok 'Rawstr4c::Config';
use-ok 'Rawstr4c::Generator';
use-ok 'Rawstr4c::Version';
# 检查 META6.json
meta-ok;
done-testing;