Skip to content

Commit 4197e67

Browse files
committed
Add 01-distribution.rakutest
1 parent e628908 commit 4197e67

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/env raku
2+
# ---------------------------------------------------------------
3+
# SPDX-License-Identifier: GPL-3.0-or-later
4+
# ---------------------------------------------------------------
5+
# Test File : 01-distribution.rakutest
6+
# Test Authors : Aoran Zeng <[email protected]>
7+
# Created On : <2025-07-21>
8+
# Last Modified : <2025-07-21>
9+
#
10+
# $(cwd) 为 test/ 时:
11+
#
12+
# raku ./01-distribution.rakutest
13+
# ---------------------------------------------------------------
14+
15+
use lib '../lib';
16+
use Test;
17+
use Test::META;
18+
19+
use-ok 'Rawstr4c::Parser';
20+
use-ok 'Rawstr4c::Config';
21+
use-ok 'Rawstr4c::Generator';
22+
use-ok 'Rawstr4c::Version';
23+
24+
# 检查 META6.json
25+
meta-ok;
26+
27+
done-testing;

0 commit comments

Comments
 (0)