Closed argiepiano closed 1 year ago
The issue is with the test info file. It has this line:
file = block.test
instead of:
file = mini_layouts.test
I guess the tests are not ready yet - many failures. Sorry about that...
I belief, it's related to https://github.com/backdrop-contrib/mini_layouts/issues/28, where the duplicate tests/mini_layouts_test/block_test.module got removed.
I guess the tests are not ready yet
Yes, that seems to be the case.
Steps to reproduce
Enable simpletest and run
MiniLayoutsBlockTestCase
. (Backdrop 1.22.0 clean install)Additional information
BackdropWebTest::setUp()
does not take any arguments. TheMiniLayoutsBlockTestCase:setUp()
method invokesparent::setUp('block_test');
, trying to enableblock_test
, which is never enabled.[EDIT: actually
BackdropWebTest::setUp()
does take arguments, retrieved withfunc_get_args();
]