Commit aae9bb280bb0317142de76a4275d2ee8603bec55
1 parent
381f02df
Exists in
master
and in
2 other branches
amelioration TEST.sh pour qu'il marche dans tous les cas
Showing
3 changed files
with
12 additions
and
7 deletions
Show diff stats
TESTS.sh
1 | 1 | # Souvent necessaire pour que les tests se passent bien: |
2 | 2 | sudo chmod o+w tmp/cache/persistent/myapp_cake_core_translations_* |
3 | 3 | |
4 | -vendor/bin/phpunit | |
4 | +vendor/bin/phpunit || vendor/phpunit/phpunit/phpunit | |
5 | + | |
6 | +# Si ca ne marche pas, essayer plutot: | |
7 | +#vendor/phpunit/phpunit/phpunit | |
8 | + | |
5 | 9 | # Plus de details: |
6 | 10 | #vendor/bin/phpunit --debug |
7 | 11 | #vendor/bin/phpunit --verbose --log-tap tap.log |
8 | 12 | #vendor/bin/phpunit --testdox |
9 | 13 | |
10 | -# Si ca ne marche pas, essayer plutot: | |
11 | -#vendor/phpunit/phpunit/phpunit | ... | ... |
tests/TestCase/Controller/MaterielsControllerTest.php
... | ... | @@ -803,11 +803,13 @@ class MaterielsControllerTest extends General { |
803 | 803 | /* |
804 | 804 | * 2. Test champ global "s_all_2" dans le menu latéral de gauche |
805 | 805 | */ |
806 | - $this->post('/materiels/find', | |
807 | - ['s_all_2' => 'TEST-2016-0002'] | |
808 | - ); | |
806 | + // Recherche en majuscules | |
807 | + $this->post( '/materiels/find', ['s_all_2' => 'TEST-2016-0002'] ); | |
809 | 808 | $this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche général du menu latéral est incorrecte."); |
810 | - | |
809 | + // Recherche en minuscules | |
810 | + $this->post( '/materiels/find', ['s_all_2' => 'test-2016-0002'] ); | |
811 | + $this->assertResponseContains("Résultats (1)", "Le nb de materiels pour la recherche général du menu latéral est incorrecte."); | |
812 | + | |
811 | 813 | |
812 | 814 | /* |
813 | 815 | * 3. Test champ général "s_all" en haut du formulaire | ... | ... |
... | ... | @@ -0,0 +1 @@ |
1 | +../phpunit/phpunit/phpunit | ... | ... |