openresty 测试框架 test::nginx 安装
test::nginx 是openresty的一个测试框架,使用perl语言编写,测试用例使用DSL语法,可以穿插perl脚本。
test::nginx 依赖perl环境,需要先安装perl语言的包管理器 cpanminus
# cpanminus 安装
安装文档:https://metacpan.org/pod/App::cpanminus#INSTALLATION (opens new window)
curl -L https://cpanmin.us | perl - --sudo App::cpanminus
# or
curl -L https://cpanmin.us | perl - App::cpanminus
# MacOS with brew
brew install cpanminus
1
2
3
4
5
6
2
3
4
5
6
# 通过 cpanm 安装 test::nginx模块
安装文档:https://github.com/openresty/test-nginx#installation (opens new window)
sudo cpanm --notest Test::Nginx IPC::Run
1
Last Updated: 2024/04/23, 01:30:37