diff tests/test-share.t @ 45301:dc283bc7e033

localrepo: abort creating a shared repo if the source does not have store We cannot create a shared repository without a store IIUC. Let's abort in such cases. Differential Revision: https://phab.mercurial-scm.org/D8772
author Pulkit Goyal <7895pulkit@gmail.com>
date Tue, 21 Jul 2020 18:21:27 +0530
parents 69883775b27d
children d252f51ab032
line wrap: on
line diff
--- a/tests/test-share.t	Tue Jul 21 13:58:58 2020 +0530
+++ b/tests/test-share.t	Tue Jul 21 18:21:27 2020 +0530
@@ -252,3 +252,9 @@
 
   $ killdaemons.py
 
+Test sharing a repository which was created with store requirement disable
+
+  $ hg init nostore --config format.usestore=false
+  $ hg share nostore sharednostore
+  abort: cannot create shared repository as source was created with 'format.usestore' config disabled
+  [255]