tests/test-nested-repo.t
author Adrian Buehlmann <adrian@cadifra.com>
Wed, 15 Sep 2010 18:00:09 +0200
changeset 12305 fd78997d1e6b
parent 12279 28e2e3804f2e
child 12316 4134686b83e1
permissions -rw-r--r--
tests: unify test-extra-filelog-entry

  $ hg init a
  $ cd a
  $ hg init b
  $ echo x > b/x

Should print nothing:

  $ hg add b
  $ hg st

Should fail:

  $ hg st b/x
  abort: path 'b/x' is inside repo 'b'
  $ hg add b/x
  abort: path 'b/x' is inside repo 'b'

Should fail:

  $ hg add b b/x
  abort: path 'b/x' is inside repo 'b'
  $ hg st

Should arguably print nothing:

  $ hg st b

  $ echo a > a
  $ hg ci -Ama a

Should fail:

  $ hg mv a b
  abort: path 'b/a' is inside repo 'b'
  $ hg st