changed gitignore first step of merging all subtrees

This commit is contained in:
Bachir Soussi Chiadmi 2015-04-19 13:18:35 +02:00
parent bf88fdf0b9
commit 51cc1bb7b2
2 changed files with 4 additions and 22 deletions

8
.gitignore vendored
View File

@ -2,12 +2,12 @@
sites/*/settings*.php
# Ignore paths that contain user-generated content.
sites/*
#sites/*/files
#sites/*/private
#sites/*
sites/*/files
sites/*/private
_base_d7.tmproj
/_materio.sublime-project
/_materio.sublime-workspace
/_solr.sublime-project
/_solr.sublime-workspace
/_solr.sublime-workspace

View File

@ -1,18 +0,0 @@
<?php
namespace Drupal\psr_0_test\Tests\Nested;
class NestedExampleTest extends \DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'PSR0 example test: PSR-0 in nested subfolders.',
'description' => 'We want to assert that this PSR-0 test case is being discovered.',
'group' => 'SimpleTest',
);
}
function testArithmetics() {
$this->assert(1 + 1 == 2, '1 + 1 == 2');
}
}