Mojolicious家庭测试问题

问题描述:

我试图安装Mojolicious-1.90,但没有通过t/mojo/home.t测试。Mojolicious家庭测试问题

t/mojo/home.t .............................. 1/5 
# Failed test 'right path detected' 
# at t/mojo/home.t line 27. 
#  Structures begin differing at: 
#   $got->[3] = '.cpan' 
#  $expected->[3] = 'public_html' 

# Failed test 'right path detected' 
# at t/mojo/home.t line 33. 
#  Structures begin differing at: 
#   $got->[3] = 'public_html' 
#  $expected->[3] = '.cpan' 

# Failed test 'right path detected' 
# at t/mojo/home.t line 39. 
#  Structures begin differing at: 
#   $got->[3] = '.cpan' 
#  $expected->[3] = 'public_html' 
# Looks like you failed 3 tests of 5. 
t/mojo/home.t .............................. Dubious, test returned 3 (wstat 768, 0x300) 

这是一个错误还是错误的东西?

随着1.92版本,我得到了同样的错误:

t/mojo/home.t .............................. 1/5 
# Failed test 'right path detected' 
# at t/mojo/home.t line 27. 
#  Structures begin differing at: 
#   $got->[3] = 'Mojolicious-1.92' 
#  $expected->[3] = 'public_html' 

# Failed test 'right path detected' 
# at t/mojo/home.t line 33. 
#  Structures begin differing at: 
#   $got->[3] = 'public_html' 
#  $expected->[3] = 'Mojolicious-1.92' 

# Failed test 'right path detected' 
# at t/mojo/home.t line 39. 
#  Structures begin differing at: 
#   $got->[3] = 'Mojolicious-1.92' 
#  $expected->[3] = 'public_html' 
# Looks like you failed 3 tests of 5. 
t/mojo/home.t .............................. Dubious, test returned 3 (wstat 768, 0x300) 
+0

你试过最新的Mojolicious吗? –

我已经找到了原因,为什么家庭测试没”传递 - 这是设置(我的.bashrc中的export MOJO_HOME=/home/me/public_html)。

尝试抓取文件,并自己运行测试:

wget "http://search.cpan.org/CPAN/authors/id/S/SR/SRI/Mojolicious-1.92.tar.gz" 
tar -xzf Mojolicious-1.92.tar.gz 
cd Mojolicious-1.92 
perl Makefile.PL 
    # Checking if your kit is complete... 
    # Looks good 
    # Writing Makefile for Mojolicious 
make test 
+0

也与版本1.92测试失败。 –

+0

你在一个奇怪的设置?其他测试是否成功?我只是预先安装,如果我在哪里你.. –