Bachir Soussi Chiadmi 438237e852 updated contrib modules 4 yıl önce
..
comment 438237e852 updated contrib modules 4 yıl önce
field 438237e852 updated contrib modules 4 yıl önce
handlers 438237e852 updated contrib modules 4 yıl önce
node 438237e852 updated contrib modules 4 yıl önce
plugins 438237e852 updated contrib modules 4 yıl önce
styles 438237e852 updated contrib modules 4 yıl önce
taxonomy 438237e852 updated contrib modules 4 yıl önce
test_handlers 438237e852 updated contrib modules 4 yıl önce
test_plugins 438237e852 updated contrib modules 4 yıl önce
user 438237e852 updated contrib modules 4 yıl önce
README.txt 438237e852 updated contrib modules 4 yıl önce
views_access.test 438237e852 updated contrib modules 4 yıl önce
views_ajax.test 8d8a60b615 security upadtes 6 yıl önce
views_analyze.test 438237e852 updated contrib modules 4 yıl önce
views_argument_default.test 438237e852 updated contrib modules 4 yıl önce
views_argument_validator.test 438237e852 updated contrib modules 4 yıl önce
views_basic.test 438237e852 updated contrib modules 4 yıl önce
views_cache.test 438237e852 updated contrib modules 4 yıl önce
views_cache.test.css 1bc61b12ad first import 9 yıl önce
views_cache.test.js 438237e852 updated contrib modules 4 yıl önce
views_clone.test 438237e852 updated contrib modules 4 yıl önce
views_exposed_form.test 438237e852 updated contrib modules 4 yıl önce
views_glossary.test 438237e852 updated contrib modules 4 yıl önce
views_groupby.test 438237e852 updated contrib modules 4 yıl önce
views_handler_filter.test 438237e852 updated contrib modules 4 yıl önce
views_handlers.test 438237e852 updated contrib modules 4 yıl önce
views_module.test 438237e852 updated contrib modules 4 yıl önce
views_pager.test 438237e852 updated contrib modules 4 yıl önce
views_plugin_localization_test.inc 438237e852 updated contrib modules 4 yıl önce
views_query.test 438237e852 updated contrib modules 4 yıl önce
views_test.info 438237e852 updated contrib modules 4 yıl önce
views_test.install 1bc61b12ad first import 9 yıl önce
views_test.module 438237e852 updated contrib modules 4 yıl önce
views_test.views_default.inc 438237e852 updated contrib modules 4 yıl önce
views_translatable.test 438237e852 updated contrib modules 4 yıl önce
views_ui.test 438237e852 updated contrib modules 4 yıl önce
views_upgrade.test 438237e852 updated contrib modules 4 yıl önce
views_view.test 438237e852 updated contrib modules 4 yıl önce

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.