mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
528 B
528 B
Delete namespace dependents check
This is a regression test, previously delete.namespace
allowed a delete as long as the deletions had a name anywhere in your codebase, it should only check the current project branch.
myproject/main> builtins.merge
sub.dependency = 123
dependent = dependency + 99
myproject/main> add
myproject/main> branch /new
myproject/new> delete.namespace sub
myproject/new> view dependent