[{'Text': 'Edited point-topic-mcp/tests/test_gbs_tools.py:\n\n```diff\n@@ -195,6 +195,20 @@\n         assert existing_id in result\n \n \n+# --- get_gbs_instructions tests ---\n+\n+def test_get_gbs_instructions(gbs_env):\n+    """get_gbs_instructions returns the cheatsheet with expected content."""\n+    gbs = gbs_env\n+    result = gbs.get_gbs_instructions()\n+    assert "GBS INSTRUCTIONS" in result\n+    assert "read_gbs" in result\n+    assert "add_statistic" in result\n+    assert "create_source" in result\n+    assert "662ff7a3f9d5751ffbf300f6" in result  # BT Group OID\n+    assert "admin URL" in result.lower()\n+\n+\n # --- create_source tests ---\n \n def test_create_source_validation(gbs_env):\n\n```'}]