def test_cli_srcpath_absolute(mock_make_site, mock_getcwd, mock_isdir): mock_isdir.return_value = True mock_getcwd.return_value = '/' cli.render({ '--srcpath': '/foo/templates', '--outpath': None, '--static': None, 'watch': False, }) mock_make_site.assert_called_once_with(searchpath='/foo/templates', outpath='/', staticpaths=None)
def test_cli_srcpath_absolute(mock_make_site, mock_getcwd, mock_isdir): mock_isdir.return_value = True mock_getcwd.return_value = '/' cli.render({ '--srcpath': '/foo/templates', '--outpath': None, '--static': None, 'watch': False, }) mock_make_site.assert_called_once_with( searchpath='/foo/templates', outpath='/', staticpaths=None )