def test_get(self):
        """Fetch a single file instance."""

        qs = FBO(
            path=TEST_FILES_ROOT,
        ).all()

        obj = qs.get(
            name='test1.md',
        )

        self.assertEqual(
            'test1.md',
            obj.name,
        )