get('/bot'); $response->assertStatus(200); } public function test_bot_page_contains_user_agent_string(): void { $response = $this->get('/bot'); $response->assertSee('TroveBot/0.1 (+https://trove.lvl0.xyz/bot)', escape: false); } public function test_bot_page_contains_robots_txt_opt_out_example(): void { $response = $this->get('/bot'); $response->assertSee('User-agent: TroveBot', escape: false); $response->assertSee('Disallow: /', escape: false); } public function test_bot_page_links_to_forge_repository(): void { $response = $this->get('/bot'); $response->assertSee('https://forge.lvl0.xyz/lvl0/trove', escape: false); } }