You are here

public function PackageManagerTest::testNeedsComposerUpdate in Composer Manager 8

@covers ::needsComposerUpdate

File

tests/src/Unit/PackageManagerTest.php, line 201

Class

PackageManagerTest
@coversDefaultClass \Drupal\composer_manager\PackageManager @group composer_manager

Namespace

Drupal\Tests\composer_manager\Unit

Code

public function testNeedsComposerUpdate() {
  $needs_update = $this->manager
    ->needsComposerUpdate();
  $this
    ->assertEquals(TRUE, $needs_update);
}