robots.php 380 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @group canonical
  4. * @group rewrite
  5. * @group query
  6. */
  7. class Tests_Canonical_Robots extends WP_Canonical_UnitTestCase {
  8. public function test_remove_trailing_slashes_for_robots_requests() {
  9. $this->set_permalink_structure( '/%postname%/' );
  10. $this->assertCanonical( '/robots.txt', '/robots.txt' );
  11. $this->assertCanonical( '/robots.txt/', '/robots.txt' );
  12. }
  13. }