Skip to content
  • Eloy Lafuente's avatar
    MDL-71036 phpunit: Renamed various file-related assertions · 309a65a6
    Eloy Lafuente authored
    In PHPUnit 9.1, the following file-related assertions
    have been deprecated and there are new alternatives for
    all them:
    - assertNotIsReadable()         -> assertIsNotReadable()
    - assertNotIsWritable()         -> assertIsNotWritable()
    - assertDirectoryNotExists()    -> assertDirectoryDoesNotExist()
    - assertDirectoryNotIsReadable()-> assertDirectoryIsNotReadable()
    - assertDirectoryNotIsWritable()-> assertDirectoryIsNotWritable()
    - assertFileNotExists()         -> assertFileDoesNotExist()
    - assertFileNotIsReadable()     -> assertFileIsNotReadable()
    - assertFileNotIsWritable()     -> assertFileIsNotWritable()
    
    This is about to, simply, move all cases to the new alternatives.
    
    Source: https://github.com/sebastianbergmann/phpunit/blob/9.1.0/ChangeLog-9.1.md
    
    Regexp to find all them:
    
    ag 'assertNotIsReadable|assertNotIsWritable|assertDirectoryNotExists|\
    assertDirectoryNotIsReadable|assertDirectoryNotIsWritable|\
    assertFileNotExists|assertFileNotIsReadable|assertFileNotIsWritable'
    309a65a6