Another way to check what `.` and `..` in `/` really is:

    $ readlink -f ..
    /home

    $ readlink -f /.
    /

    $ readlink -f /..
    /

As you can see, `.` and `..` is pointed to `/`.