opi 510246a49d [up] views 7.x-3.22 il y a 6 ans
..
comment a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
field a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
handlers a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
node a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
plugins a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
styles a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
taxonomy a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
test_handlers a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
test_plugins a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
user a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
README.txt a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_access.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_ajax.test 51a9ee8175 [up] Views 7.x-3.18 il y a 7 ans
views_analyze.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_argument_default.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_argument_validator.test 297bc86d24 [up] Views 7.x-3.21 il y a 6 ans
views_basic.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_cache.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_cache.test.css 4fdf2fff80 Commit initial. Etat de la prod au 21/11/2016 il y a 8 ans
views_cache.test.js a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_exposed_form.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_glossary.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_groupby.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_handler_filter.test 510246a49d [up] views 7.x-3.22 il y a 6 ans
views_handlers.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_module.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_pager.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_plugin_localization_test.inc a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_query.test 297bc86d24 [up] Views 7.x-3.21 il y a 6 ans
views_test.info 510246a49d [up] views 7.x-3.22 il y a 6 ans
views_test.install 4fdf2fff80 Commit initial. Etat de la prod au 21/11/2016 il y a 8 ans
views_test.module a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_test.views_default.inc a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_translatable.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_ui.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_upgrade.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans
views_view.test a0f236d303 [up] Views 7.x-3.20 il y a 7 ans

README.txt

Views Tests
```````````
All of the tests may be executed with the following command:

$ scripts/run-tests.sh --color --url http://example.com/ --php `which php` --concurrency 4 --verbose --directory 'sites/all/modules/contrib/views/tests' 2> /dev/null

Explanation:
--color
Colorizes the output. Optional.
--url http://example.com/
The name of the Drupal 7 hostname used locally for running tests, e.g.
"http://drupal7.dev". Required.
--php `which php`
Tells the test runner the path to the PHP binary. Only necessary if the test
runner is unable to find the path automatically or to use an alternative
PHP binary. Optional.
--cuncurrency 4
Run multiple test processes simultaneously. Four appears to be a good
balance between melting the computer and improving performance. Optional.
--verbose
Display results for all of the assertion statements after the summary
details. Optional.
--directory 'sites/all/modules/contrib/views/tests'
Run all of the commands in the following directory. The path is relative to
the Drupal installation's root directory. This will run all of Views' tests
in one go, rather than either repeating the names of test groups or running
multiple commands. Optional.
2> /dev/null
Outputs all error messages to /dev/null, i.e. hides them. Optional.