Skip to content

Commit

Permalink
Removing various tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash committed Feb 6, 2017
1 parent 91509b0 commit ccc9e9a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 1,044 deletions.
126 changes: 0 additions & 126 deletions tests/generateMakeTest.php

This file was deleted.

88 changes: 0 additions & 88 deletions tests/lockMakeTest.php

This file was deleted.

41 changes: 0 additions & 41 deletions tests/makeConvertTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,6 @@ public function testMakeConvert($source_filename, $options, $expected_lines) {
*/
public function providerTestMakeConvert() {
return array(
array(
// Source filename in makefiles directory.
'patches.make',
// Command pptions.
array('format' => 'yml'),
// Expected output lines.
array(
'core: 7.x',
'features:',
'version: 1.0-beta4',
'patch:',
"- 'http://drupal.org/files/issues/features-drush-backend-invoke-25.patch'",
),
),
array(
'patches.make',
array('format' => 'composer'),
Expand All @@ -77,33 +63,6 @@ public function providerTestMakeConvert() {
'"Enter drupal/features patch #0 description here": "http://drupal.org/files/issues/features-drush-backend-invoke-25.patch"',
),
),
array(
'composer.lock',
array('format' => 'make'),
array(
'core = 7.x',
'api = 2',
// Ensure Drupal core tag is set correctly.
'projects[drupal][download][tag] = "7.43"',
'projects[features][download][type] = "git"',
'projects[features][download][url] = "https://git.drupal.org/project/features"',
'projects[features][download][tag] = "7.x-1.0-beta4"',
'projects[features][patch][0] = "http://drupal.org/files/issues/features-drush-backend-invoke-25.patch"'),
),
array(
'composer.lock',
array('format' => 'yml'),
array(
'core: 7.x',
'api: 2',
// Ensure Drupal core tag is set correctly.
"tag: '7.43'",
'features:',
'tag: 7.x-1.0-beta4',
'patch:',
"- 'http://drupal.org/files/issues/features-drush-backend-invoke-25.patch'",
),
),
);
}

Expand Down
Loading

0 comments on commit ccc9e9a

Please sign in to comment.