def test_list_tags_passes(self, mock_login, mock_get):
        """
        Test .list_tags() passes
        """
        mock_login.return_value = self.account_id

        mock_get.return_value = {
            'tags': [
                {'id': 'f1472b67-0a32-448a-9593-e7c4e90c261f'}
            ]
        }

        alert = InactivityAlert(self.username, self.password)

        response = alert.list_tags()

        self.assertEqual(
            response,
            [
                {'id': 'f1472b67-0a32-448a-9593-e7c4e90c261f'}
            ]
        )

        mock_get.assert_called_once_with(
            url='https://logentries.com/rest/{account_id}/api/tags/'.format(
                account_id=self.account_id,
            )
        )