# Overwrite watched file with non-watched file.

touch /file
touch /other

watch /file
watch /other

mv /other /file

echo asd >>/file
rm /file

# TODO: think what the best behaviour is here; do we want to keep the watch or
# lose it? It's inconsistent now.
Output:
    ItemIsFile|ItemRenamed /other
    ItemIsFile|ItemRenamed /file
    ItemIsFile|ItemRenamed /file
    ItemIsFile|ItemModified /file
    ItemIsFile|ItemRemoved /file

