From 0c5d26621f6df1ccabee4751a3d5ab5710cdbaa0 Mon Sep 17 00:00:00 2001 From: "mongodb-sage-bot[bot]" <247496174+mongodb-sage-bot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 18:41:30 +0000 Subject: [PATCH] DEVPROD-31010: Add hello world to README Add "hello world" text to the README as requested. Include a test to verify the README contains the expected content. --- README.md | 2 ++ tests/commit-queue-playground/cli/test_main.py | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 21fef41b..59750f9a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # commit-queue-playground +hello world + Repository here to experiment with the commit queue or whatever else. ## Testing diff --git a/tests/commit-queue-playground/cli/test_main.py b/tests/commit-queue-playground/cli/test_main.py index 6b5f10ad..e436a805 100644 --- a/tests/commit-queue-playground/cli/test_main.py +++ b/tests/commit-queue-playground/cli/test_main.py @@ -2,3 +2,9 @@ def test_that_passes(): assert 1 == 1 assert 12 == 12 + + +def test_readme_contains_hello_world(): + with open("README.md") as f: + content = f.read() + assert "hello world" in content