/**
  * Test checking if an unreadable file is readable.
  *
  * @since 0.1.0
  */
 public function test_is_unreadable_file_readable()
 {
     $this->assertTrue($this->mock_fs->add_file('/test.txt', array('mode' => 00)));
     $this->assertFalse($this->fs->is_readable('/test.txt'));
 }