busser-behave 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.cane +0 -0
- data/.gitignore +17 -0
- data/.tailor +4 -0
- data/.travis.yml +11 -0
- data/CHANGELOG.md +3 -0
- data/Gemfile +3 -0
- data/LICENSE +15 -0
- data/README.md +41 -0
- data/Rakefile +68 -0
- data/busser-behave.gemspec +30 -0
- data/features/plugin_install_command.feature +11 -0
- data/features/plugin_list_command.feature +8 -0
- data/features/support/env.rb +13 -0
- data/features/test_command.feature +31 -0
- data/lib/busser/behave/version.rb +26 -0
- data/lib/busser/runner_plugin/behave.rb +37 -0
- data/vendor/behave/CHANGES.rst +483 -0
- data/vendor/behave/LICENSE +23 -0
- data/vendor/behave/MANIFEST.in +37 -0
- data/vendor/behave/PROJECT_INFO.rst +21 -0
- data/vendor/behave/README.rst +112 -0
- data/vendor/behave/VERSION.txt +1 -0
- data/vendor/behave/behave.ini +22 -0
- data/vendor/behave/behave/__init__.py +30 -0
- data/vendor/behave/behave/__main__.py +187 -0
- data/vendor/behave/behave/_stepimport.py +185 -0
- data/vendor/behave/behave/_types.py +134 -0
- data/vendor/behave/behave/api/__init__.py +7 -0
- data/vendor/behave/behave/api/async_step.py +283 -0
- data/vendor/behave/behave/capture.py +227 -0
- data/vendor/behave/behave/compat/__init__.py +5 -0
- data/vendor/behave/behave/compat/collections.py +20 -0
- data/vendor/behave/behave/configuration.py +788 -0
- data/vendor/behave/behave/contrib/__init__.py +0 -0
- data/vendor/behave/behave/contrib/scenario_autoretry.py +73 -0
- data/vendor/behave/behave/formatter/__init__.py +12 -0
- data/vendor/behave/behave/formatter/_builtins.py +39 -0
- data/vendor/behave/behave/formatter/_registry.py +135 -0
- data/vendor/behave/behave/formatter/ansi_escapes.py +91 -0
- data/vendor/behave/behave/formatter/base.py +200 -0
- data/vendor/behave/behave/formatter/formatters.py +57 -0
- data/vendor/behave/behave/formatter/json.py +253 -0
- data/vendor/behave/behave/formatter/null.py +12 -0
- data/vendor/behave/behave/formatter/plain.py +158 -0
- data/vendor/behave/behave/formatter/pretty.py +351 -0
- data/vendor/behave/behave/formatter/progress.py +287 -0
- data/vendor/behave/behave/formatter/rerun.py +114 -0
- data/vendor/behave/behave/formatter/sphinx_steps.py +372 -0
- data/vendor/behave/behave/formatter/sphinx_util.py +118 -0
- data/vendor/behave/behave/formatter/steps.py +497 -0
- data/vendor/behave/behave/formatter/tags.py +178 -0
- data/vendor/behave/behave/i18n.py +614 -0
- data/vendor/behave/behave/importer.py +102 -0
- data/vendor/behave/behave/json_parser.py +264 -0
- data/vendor/behave/behave/log_capture.py +233 -0
- data/vendor/behave/behave/matchers.py +402 -0
- data/vendor/behave/behave/model.py +1737 -0
- data/vendor/behave/behave/model_core.py +416 -0
- data/vendor/behave/behave/model_describe.py +105 -0
- data/vendor/behave/behave/parser.py +615 -0
- data/vendor/behave/behave/reporter/__init__.py +0 -0
- data/vendor/behave/behave/reporter/base.py +45 -0
- data/vendor/behave/behave/reporter/junit.py +473 -0
- data/vendor/behave/behave/reporter/summary.py +94 -0
- data/vendor/behave/behave/runner.py +753 -0
- data/vendor/behave/behave/runner_util.py +417 -0
- data/vendor/behave/behave/step_registry.py +112 -0
- data/vendor/behave/behave/tag_expression.py +111 -0
- data/vendor/behave/behave/tag_matcher.py +465 -0
- data/vendor/behave/behave/textutil.py +137 -0
- data/vendor/behave/behave/userdata.py +130 -0
- data/vendor/behave/behave4cmd0/__all_steps__.py +12 -0
- data/vendor/behave/behave4cmd0/__init__.py +5 -0
- data/vendor/behave/behave4cmd0/__setup.py +11 -0
- data/vendor/behave/behave4cmd0/command_shell.py +216 -0
- data/vendor/behave/behave4cmd0/command_shell_proc.py +256 -0
- data/vendor/behave/behave4cmd0/command_steps.py +532 -0
- data/vendor/behave/behave4cmd0/command_util.py +147 -0
- data/vendor/behave/behave4cmd0/failing_steps.py +49 -0
- data/vendor/behave/behave4cmd0/log/__init__.py +1 -0
- data/vendor/behave/behave4cmd0/log/steps.py +395 -0
- data/vendor/behave/behave4cmd0/note_steps.py +29 -0
- data/vendor/behave/behave4cmd0/passing_steps.py +36 -0
- data/vendor/behave/behave4cmd0/pathutil.py +146 -0
- data/vendor/behave/behave4cmd0/setup_command_shell.py +24 -0
- data/vendor/behave/behave4cmd0/textutil.py +304 -0
- data/vendor/behave/bin/behave +44 -0
- data/vendor/behave/bin/behave.cmd +10 -0
- data/vendor/behave/bin/behave.junit_filter.py +85 -0
- data/vendor/behave/bin/behave.step_durations.py +163 -0
- data/vendor/behave/bin/behave2cucumber_json.py +63 -0
- data/vendor/behave/bin/behave_cmd.py +44 -0
- data/vendor/behave/bin/convert_i18n_yaml.py +77 -0
- data/vendor/behave/bin/explore_platform_encoding.py +24 -0
- data/vendor/behave/bin/i18n.yml +621 -0
- data/vendor/behave/bin/invoke +8 -0
- data/vendor/behave/bin/invoke.cmd +9 -0
- data/vendor/behave/bin/json.format.py +167 -0
- data/vendor/behave/bin/jsonschema_validate.py +122 -0
- data/vendor/behave/bin/make_localpi.py +279 -0
- data/vendor/behave/bin/project_bootstrap.sh +30 -0
- data/vendor/behave/bin/toxcmd.py +270 -0
- data/vendor/behave/bin/toxcmd3.py +270 -0
- data/vendor/behave/conftest.py +27 -0
- data/vendor/behave/docs/Makefile +154 -0
- data/vendor/behave/docs/_static/agogo.css +501 -0
- data/vendor/behave/docs/_static/behave_logo.png +0 -0
- data/vendor/behave/docs/_static/behave_logo1.png +0 -0
- data/vendor/behave/docs/_static/behave_logo2.png +0 -0
- data/vendor/behave/docs/_static/behave_logo3.png +0 -0
- data/vendor/behave/docs/_themes/LICENSE +45 -0
- data/vendor/behave/docs/_themes/kr/layout.html +17 -0
- data/vendor/behave/docs/_themes/kr/relations.html +19 -0
- data/vendor/behave/docs/_themes/kr/static/flasky.css_t +480 -0
- data/vendor/behave/docs/_themes/kr/static/small_flask.css +90 -0
- data/vendor/behave/docs/_themes/kr/theme.conf +7 -0
- data/vendor/behave/docs/_themes/kr_small/layout.html +22 -0
- data/vendor/behave/docs/_themes/kr_small/static/flasky.css_t +287 -0
- data/vendor/behave/docs/_themes/kr_small/theme.conf +10 -0
- data/vendor/behave/docs/api.rst +408 -0
- data/vendor/behave/docs/appendix.rst +19 -0
- data/vendor/behave/docs/behave.rst +640 -0
- data/vendor/behave/docs/behave.rst-template +86 -0
- data/vendor/behave/docs/behave_ecosystem.rst +81 -0
- data/vendor/behave/docs/comparison.rst +85 -0
- data/vendor/behave/docs/conf.py +293 -0
- data/vendor/behave/docs/context_attributes.rst +66 -0
- data/vendor/behave/docs/django.rst +192 -0
- data/vendor/behave/docs/formatters.rst +61 -0
- data/vendor/behave/docs/gherkin.rst +673 -0
- data/vendor/behave/docs/index.rst +57 -0
- data/vendor/behave/docs/install.rst +60 -0
- data/vendor/behave/docs/more_info.rst +184 -0
- data/vendor/behave/docs/new_and_noteworthy.rst +18 -0
- data/vendor/behave/docs/new_and_noteworthy_v1.2.4.rst +11 -0
- data/vendor/behave/docs/new_and_noteworthy_v1.2.5.rst +814 -0
- data/vendor/behave/docs/new_and_noteworthy_v1.2.6.rst +255 -0
- data/vendor/behave/docs/parse_builtin_types.rst +59 -0
- data/vendor/behave/docs/philosophy.rst +235 -0
- data/vendor/behave/docs/regular_expressions.rst +71 -0
- data/vendor/behave/docs/related.rst +14 -0
- data/vendor/behave/docs/test_domains.rst +62 -0
- data/vendor/behave/docs/tutorial.rst +636 -0
- data/vendor/behave/docs/update_behave_rst.py +100 -0
- data/vendor/behave/etc/json/behave.json-schema +172 -0
- data/vendor/behave/etc/junit.xml/behave_junit.xsd +103 -0
- data/vendor/behave/etc/junit.xml/junit-4.xsd +92 -0
- data/vendor/behave/examples/async_step/README.txt +8 -0
- data/vendor/behave/examples/async_step/behave.ini +14 -0
- data/vendor/behave/examples/async_step/features/async_dispatch.feature +8 -0
- data/vendor/behave/examples/async_step/features/async_run.feature +6 -0
- data/vendor/behave/examples/async_step/features/environment.py +28 -0
- data/vendor/behave/examples/async_step/features/steps/async_dispatch_steps.py +26 -0
- data/vendor/behave/examples/async_step/features/steps/async_steps34.py +10 -0
- data/vendor/behave/examples/async_step/features/steps/async_steps35.py +10 -0
- data/vendor/behave/examples/async_step/testrun_example.async_dispatch.txt +11 -0
- data/vendor/behave/examples/async_step/testrun_example.async_run.txt +9 -0
- data/vendor/behave/examples/env_vars/README.rst +26 -0
- data/vendor/behave/examples/env_vars/behave.ini +15 -0
- data/vendor/behave/examples/env_vars/behave_run.output_example.txt +12 -0
- data/vendor/behave/examples/env_vars/features/env_var.feature +6 -0
- data/vendor/behave/examples/env_vars/features/steps/env_var_steps.py +38 -0
- data/vendor/behave/features/README.txt +12 -0
- data/vendor/behave/features/background.feature +392 -0
- data/vendor/behave/features/capture_stderr.feature +172 -0
- data/vendor/behave/features/capture_stdout.feature +125 -0
- data/vendor/behave/features/cmdline.lang_list.feature +33 -0
- data/vendor/behave/features/configuration.default_paths.feature +116 -0
- data/vendor/behave/features/context.global_params.feature +35 -0
- data/vendor/behave/features/context.local_params.feature +17 -0
- data/vendor/behave/features/directory_layout.advanced.feature +147 -0
- data/vendor/behave/features/directory_layout.basic.feature +75 -0
- data/vendor/behave/features/directory_layout.basic2.feature +87 -0
- data/vendor/behave/features/environment.py +53 -0
- data/vendor/behave/features/exploratory_testing.with_table.feature +141 -0
- data/vendor/behave/features/feature.description.feature +0 -0
- data/vendor/behave/features/feature.exclude_from_run.feature +96 -0
- data/vendor/behave/features/formatter.help.feature +30 -0
- data/vendor/behave/features/formatter.json.feature +420 -0
- data/vendor/behave/features/formatter.progress3.feature +235 -0
- data/vendor/behave/features/formatter.rerun.feature +296 -0
- data/vendor/behave/features/formatter.steps.feature +181 -0
- data/vendor/behave/features/formatter.steps_catalog.feature +100 -0
- data/vendor/behave/features/formatter.steps_doc.feature +140 -0
- data/vendor/behave/features/formatter.steps_usage.feature +404 -0
- data/vendor/behave/features/formatter.tags.feature +134 -0
- data/vendor/behave/features/formatter.tags_location.feature +183 -0
- data/vendor/behave/features/formatter.user_defined.feature +196 -0
- data/vendor/behave/features/i18n.unicode_problems.feature +445 -0
- data/vendor/behave/features/logcapture.clear_handlers.feature +114 -0
- data/vendor/behave/features/logcapture.feature +188 -0
- data/vendor/behave/features/logcapture.filter.feature +130 -0
- data/vendor/behave/features/logging.no_capture.feature +99 -0
- data/vendor/behave/features/logging.setup_format.feature +157 -0
- data/vendor/behave/features/logging.setup_level.feature +168 -0
- data/vendor/behave/features/logging.setup_with_configfile.feature +137 -0
- data/vendor/behave/features/parser.background.sad_cases.feature +129 -0
- data/vendor/behave/features/parser.feature.sad_cases.feature +144 -0
- data/vendor/behave/features/runner.abort_by_user.feature +305 -0
- data/vendor/behave/features/runner.continue_after_failed_step.feature +136 -0
- data/vendor/behave/features/runner.default_format.feature +175 -0
- data/vendor/behave/features/runner.dry_run.feature +184 -0
- data/vendor/behave/features/runner.feature_listfile.feature +223 -0
- data/vendor/behave/features/runner.hook_errors.feature +382 -0
- data/vendor/behave/features/runner.multiple_formatters.feature +285 -0
- data/vendor/behave/features/runner.scenario_autoretry.feature +131 -0
- data/vendor/behave/features/runner.select_files_by_regexp.example.feature +71 -0
- data/vendor/behave/features/runner.select_files_by_regexp.feature +84 -0
- data/vendor/behave/features/runner.select_scenarios_by_file_location.feature +403 -0
- data/vendor/behave/features/runner.select_scenarios_by_name.feature +289 -0
- data/vendor/behave/features/runner.select_scenarios_by_tag.feature +225 -0
- data/vendor/behave/features/runner.stop_after_failure.feature +122 -0
- data/vendor/behave/features/runner.tag_logic.feature +67 -0
- data/vendor/behave/features/runner.unknown_formatter.feature +23 -0
- data/vendor/behave/features/runner.use_stage_implementations.feature +126 -0
- data/vendor/behave/features/scenario.description.feature +171 -0
- data/vendor/behave/features/scenario.exclude_from_run.feature +217 -0
- data/vendor/behave/features/scenario_outline.basics.feature +100 -0
- data/vendor/behave/features/scenario_outline.improved.feature +177 -0
- data/vendor/behave/features/scenario_outline.name_annotation.feature +157 -0
- data/vendor/behave/features/scenario_outline.parametrized.feature +401 -0
- data/vendor/behave/features/scenario_outline.tagged_examples.feature +118 -0
- data/vendor/behave/features/step.async_steps.feature +225 -0
- data/vendor/behave/features/step.duplicated_step.feature +106 -0
- data/vendor/behave/features/step.execute_steps.feature +59 -0
- data/vendor/behave/features/step.execute_steps.with_table.feature +65 -0
- data/vendor/behave/features/step.import_other_step_module.feature +103 -0
- data/vendor/behave/features/step.pending_steps.feature +128 -0
- data/vendor/behave/features/step.undefined_steps.feature +307 -0
- data/vendor/behave/features/step.use_step_library.feature +44 -0
- data/vendor/behave/features/step_dialect.generic_steps.feature +189 -0
- data/vendor/behave/features/step_dialect.given_when_then.feature +89 -0
- data/vendor/behave/features/step_param.builtin_types.with_float.feature +239 -0
- data/vendor/behave/features/step_param.builtin_types.with_integer.feature +305 -0
- data/vendor/behave/features/step_param.custom_types.feature +134 -0
- data/vendor/behave/features/steps/behave_active_tags_steps.py +86 -0
- data/vendor/behave/features/steps/behave_context_steps.py +67 -0
- data/vendor/behave/features/steps/behave_model_tag_logic_steps.py +105 -0
- data/vendor/behave/features/steps/behave_model_util.py +105 -0
- data/vendor/behave/features/steps/behave_select_files_steps.py +83 -0
- data/vendor/behave/features/steps/behave_tag_expression_steps.py +166 -0
- data/vendor/behave/features/steps/behave_undefined_steps.py +101 -0
- data/vendor/behave/features/steps/use_steplib_behave4cmd.py +12 -0
- data/vendor/behave/features/summary.undefined_steps.feature +114 -0
- data/vendor/behave/features/tags.active_tags.feature +385 -0
- data/vendor/behave/features/tags.default_tags.feature +104 -0
- data/vendor/behave/features/tags.tag_expression.feature +105 -0
- data/vendor/behave/features/userdata.feature +331 -0
- data/vendor/behave/invoke.yaml +21 -0
- data/vendor/behave/issue.features/README.txt +17 -0
- data/vendor/behave/issue.features/environment.py +97 -0
- data/vendor/behave/issue.features/issue0030.feature +21 -0
- data/vendor/behave/issue.features/issue0031.feature +16 -0
- data/vendor/behave/issue.features/issue0032.feature +28 -0
- data/vendor/behave/issue.features/issue0035.feature +74 -0
- data/vendor/behave/issue.features/issue0040.feature +154 -0
- data/vendor/behave/issue.features/issue0041.feature +135 -0
- data/vendor/behave/issue.features/issue0042.feature +230 -0
- data/vendor/behave/issue.features/issue0044.feature +51 -0
- data/vendor/behave/issue.features/issue0046.feature +77 -0
- data/vendor/behave/issue.features/issue0052.feature +66 -0
- data/vendor/behave/issue.features/issue0059.feature +29 -0
- data/vendor/behave/issue.features/issue0063.feature +102 -0
- data/vendor/behave/issue.features/issue0064.feature +97 -0
- data/vendor/behave/issue.features/issue0065.feature +18 -0
- data/vendor/behave/issue.features/issue0066.feature +80 -0
- data/vendor/behave/issue.features/issue0067.feature +90 -0
- data/vendor/behave/issue.features/issue0069.feature +64 -0
- data/vendor/behave/issue.features/issue0072.feature +32 -0
- data/vendor/behave/issue.features/issue0073.feature +228 -0
- data/vendor/behave/issue.features/issue0075.feature +18 -0
- data/vendor/behave/issue.features/issue0077.feature +89 -0
- data/vendor/behave/issue.features/issue0080.feature +49 -0
- data/vendor/behave/issue.features/issue0081.feature +138 -0
- data/vendor/behave/issue.features/issue0083.feature +69 -0
- data/vendor/behave/issue.features/issue0084.feature +69 -0
- data/vendor/behave/issue.features/issue0085.feature +119 -0
- data/vendor/behave/issue.features/issue0092.feature +66 -0
- data/vendor/behave/issue.features/issue0096.feature +173 -0
- data/vendor/behave/issue.features/issue0099.feature +130 -0
- data/vendor/behave/issue.features/issue0109.feature +60 -0
- data/vendor/behave/issue.features/issue0111.feature +53 -0
- data/vendor/behave/issue.features/issue0112.feature +64 -0
- data/vendor/behave/issue.features/issue0114.feature +118 -0
- data/vendor/behave/issue.features/issue0116.feature +71 -0
- data/vendor/behave/issue.features/issue0125.feature +49 -0
- data/vendor/behave/issue.features/issue0127.feature +64 -0
- data/vendor/behave/issue.features/issue0139.feature +67 -0
- data/vendor/behave/issue.features/issue0142.feature +37 -0
- data/vendor/behave/issue.features/issue0143.feature +54 -0
- data/vendor/behave/issue.features/issue0145.feature +63 -0
- data/vendor/behave/issue.features/issue0148.feature +105 -0
- data/vendor/behave/issue.features/issue0152.feature +52 -0
- data/vendor/behave/issue.features/issue0159.feature +74 -0
- data/vendor/behave/issue.features/issue0162.feature +86 -0
- data/vendor/behave/issue.features/issue0171.feature +16 -0
- data/vendor/behave/issue.features/issue0172.feature +51 -0
- data/vendor/behave/issue.features/issue0175.feature +91 -0
- data/vendor/behave/issue.features/issue0177.feature +40 -0
- data/vendor/behave/issue.features/issue0181.feature +36 -0
- data/vendor/behave/issue.features/issue0184.feature +144 -0
- data/vendor/behave/issue.features/issue0186.feature +12 -0
- data/vendor/behave/issue.features/issue0188.feature +60 -0
- data/vendor/behave/issue.features/issue0191.feature +178 -0
- data/vendor/behave/issue.features/issue0194.feature +215 -0
- data/vendor/behave/issue.features/issue0197.feature +11 -0
- data/vendor/behave/issue.features/issue0216.feature +129 -0
- data/vendor/behave/issue.features/issue0226.feature +51 -0
- data/vendor/behave/issue.features/issue0228.feature +41 -0
- data/vendor/behave/issue.features/issue0230.feature +46 -0
- data/vendor/behave/issue.features/issue0231.feature +77 -0
- data/vendor/behave/issue.features/issue0238.feature +52 -0
- data/vendor/behave/issue.features/issue0251.feature +15 -0
- data/vendor/behave/issue.features/issue0280.feature +118 -0
- data/vendor/behave/issue.features/issue0288.feature +95 -0
- data/vendor/behave/issue.features/issue0300.feature +49 -0
- data/vendor/behave/issue.features/issue0302.feature +91 -0
- data/vendor/behave/issue.features/issue0309.feature +52 -0
- data/vendor/behave/issue.features/issue0330.feature +124 -0
- data/vendor/behave/issue.features/issue0349.feature +9 -0
- data/vendor/behave/issue.features/issue0361.feature +79 -0
- data/vendor/behave/issue.features/issue0383.feature +76 -0
- data/vendor/behave/issue.features/issue0384.feature +103 -0
- data/vendor/behave/issue.features/issue0385.feature +109 -0
- data/vendor/behave/issue.features/issue0424.feature +66 -0
- data/vendor/behave/issue.features/issue0446.feature +116 -0
- data/vendor/behave/issue.features/issue0449.feature +42 -0
- data/vendor/behave/issue.features/issue0453.feature +42 -0
- data/vendor/behave/issue.features/issue0457.feature +65 -0
- data/vendor/behave/issue.features/issue0462.feature +38 -0
- data/vendor/behave/issue.features/issue0476.feature +39 -0
- data/vendor/behave/issue.features/issue0487.feature +92 -0
- data/vendor/behave/issue.features/issue0506.feature +77 -0
- data/vendor/behave/issue.features/issue0510.feature +51 -0
- data/vendor/behave/issue.features/requirements.txt +12 -0
- data/vendor/behave/issue.features/steps/ansi_steps.py +20 -0
- data/vendor/behave/issue.features/steps/behave_hooks_steps.py +10 -0
- data/vendor/behave/issue.features/steps/use_steplib_behave4cmd.py +13 -0
- data/vendor/behave/more.features/formatter.json.validate_output.feature +37 -0
- data/vendor/behave/more.features/steps/tutorial_steps.py +16 -0
- data/vendor/behave/more.features/steps/use_steplib_behave4cmd.py +7 -0
- data/vendor/behave/more.features/tutorial.feature +6 -0
- data/vendor/behave/py.requirements/README.txt +5 -0
- data/vendor/behave/py.requirements/all.txt +16 -0
- data/vendor/behave/py.requirements/basic.txt +21 -0
- data/vendor/behave/py.requirements/develop.txt +28 -0
- data/vendor/behave/py.requirements/docs.txt +6 -0
- data/vendor/behave/py.requirements/json.txt +7 -0
- data/vendor/behave/py.requirements/more_py26.txt +8 -0
- data/vendor/behave/py.requirements/testing.txt +10 -0
- data/vendor/behave/pytest.ini +24 -0
- data/vendor/behave/setup.cfg +29 -0
- data/vendor/behave/setup.py +118 -0
- data/vendor/behave/setuptools_behave.py +130 -0
- data/vendor/behave/tasks/__behave.py +45 -0
- data/vendor/behave/tasks/__init__.py +55 -0
- data/vendor/behave/tasks/__main__.py +70 -0
- data/vendor/behave/tasks/_setup.py +135 -0
- data/vendor/behave/tasks/_vendor/README.rst +35 -0
- data/vendor/behave/tasks/_vendor/invoke.zip +0 -0
- data/vendor/behave/tasks/_vendor/path.py +1725 -0
- data/vendor/behave/tasks/_vendor/pathlib.py +1280 -0
- data/vendor/behave/tasks/_vendor/six.py +868 -0
- data/vendor/behave/tasks/clean.py +246 -0
- data/vendor/behave/tasks/docs.py +97 -0
- data/vendor/behave/tasks/requirements.txt +17 -0
- data/vendor/behave/tasks/test.py +192 -0
- data/vendor/behave/test/__init__.py +0 -0
- data/vendor/behave/test/_importer_candidate.py +3 -0
- data/vendor/behave/test/reporters/__init__.py +0 -0
- data/vendor/behave/test/reporters/test_summary.py +240 -0
- data/vendor/behave/test/test_ansi_escapes.py +73 -0
- data/vendor/behave/test/test_configuration.py +172 -0
- data/vendor/behave/test/test_formatter.py +265 -0
- data/vendor/behave/test/test_formatter_progress.py +39 -0
- data/vendor/behave/test/test_formatter_rerun.py +97 -0
- data/vendor/behave/test/test_formatter_tags.py +57 -0
- data/vendor/behave/test/test_importer.py +151 -0
- data/vendor/behave/test/test_log_capture.py +29 -0
- data/vendor/behave/test/test_matchers.py +236 -0
- data/vendor/behave/test/test_model.py +871 -0
- data/vendor/behave/test/test_parser.py +1590 -0
- data/vendor/behave/test/test_runner.py +1074 -0
- data/vendor/behave/test/test_step_registry.py +96 -0
- data/vendor/behave/test/test_tag_expression.py +506 -0
- data/vendor/behave/test/test_tag_expression2.py +462 -0
- data/vendor/behave/test/test_tag_matcher.py +729 -0
- data/vendor/behave/test/test_userdata.py +184 -0
- data/vendor/behave/tests/README.txt +12 -0
- data/vendor/behave/tests/__init__.py +0 -0
- data/vendor/behave/tests/api/__ONLY_PY34_or_newer.txt +0 -0
- data/vendor/behave/tests/api/__init__.py +0 -0
- data/vendor/behave/tests/api/_test_async_step34.py +130 -0
- data/vendor/behave/tests/api/_test_async_step35.py +75 -0
- data/vendor/behave/tests/api/test_async_step.py +18 -0
- data/vendor/behave/tests/api/testing_support.py +94 -0
- data/vendor/behave/tests/api/testing_support_async.py +21 -0
- data/vendor/behave/tests/issues/test_issue0336.py +66 -0
- data/vendor/behave/tests/issues/test_issue0449.py +55 -0
- data/vendor/behave/tests/issues/test_issue0453.py +62 -0
- data/vendor/behave/tests/issues/test_issue0458.py +54 -0
- data/vendor/behave/tests/issues/test_issue0495.py +65 -0
- data/vendor/behave/tests/unit/__init__.py +0 -0
- data/vendor/behave/tests/unit/test_behave4cmd_command_shell_proc.py +135 -0
- data/vendor/behave/tests/unit/test_capture.py +280 -0
- data/vendor/behave/tests/unit/test_model_core.py +56 -0
- data/vendor/behave/tests/unit/test_textutil.py +267 -0
- data/vendor/behave/tools/test-features/background.feature +9 -0
- data/vendor/behave/tools/test-features/environment.py +8 -0
- data/vendor/behave/tools/test-features/french.feature +11 -0
- data/vendor/behave/tools/test-features/outline.feature +39 -0
- data/vendor/behave/tools/test-features/parse.feature +10 -0
- data/vendor/behave/tools/test-features/step-data.feature +60 -0
- data/vendor/behave/tools/test-features/steps/steps.py +120 -0
- data/vendor/behave/tools/test-features/tags.feature +18 -0
- data/vendor/behave/tox.ini +159 -0
- metadata +562 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
# -*- coding: UTF-8 -*-
|
2
|
+
"""
|
3
|
+
Configure pytest environment.
|
4
|
+
Add project-specific information.
|
5
|
+
|
6
|
+
.. seealso::
|
7
|
+
* https://github.com/pytest-dev/pytest-html
|
8
|
+
"""
|
9
|
+
|
10
|
+
import behave
|
11
|
+
import pytest
|
12
|
+
|
13
|
+
@pytest.fixture(autouse=True)
|
14
|
+
def _annotate_environment(request):
|
15
|
+
"""Add project-specific information to test-run environment:
|
16
|
+
|
17
|
+
* behave.version
|
18
|
+
|
19
|
+
NOTE: autouse: Fixture is automatically used when test-module is imported.
|
20
|
+
"""
|
21
|
+
# -- USEFULL FOR: pytest --html=report.html ...
|
22
|
+
environment = getattr(request.config, "_environment", None)
|
23
|
+
if environment:
|
24
|
+
# -- PROVIDED-BY: pytest-html
|
25
|
+
behave_version = behave.__version__
|
26
|
+
environment.append(("behave", behave_version))
|
27
|
+
|
@@ -0,0 +1,154 @@
|
|
1
|
+
# Makefile for Sphinx documentation
|
2
|
+
#
|
3
|
+
|
4
|
+
# You can set these variables from the command line.
|
5
|
+
SPHINXOPTS =
|
6
|
+
UPDATE = ./update_behave_rst.py
|
7
|
+
SPHINXBUILD = $(UPDATE) && sphinx-build
|
8
|
+
PAPER =
|
9
|
+
BUILDDIR = ../build/docs
|
10
|
+
|
11
|
+
# Internal variables.
|
12
|
+
PAPEROPT_a4 = -D latex_paper_size=a4
|
13
|
+
PAPEROPT_letter = -D latex_paper_size=letter
|
14
|
+
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
|
15
|
+
# the i18n builder cannot share the environment and doctrees with the others
|
16
|
+
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
|
17
|
+
|
18
|
+
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
|
19
|
+
|
20
|
+
help:
|
21
|
+
@echo "Please use \`make <target>' where <target> is one of"
|
22
|
+
@echo " html to make standalone HTML files"
|
23
|
+
@echo " dirhtml to make HTML files named index.html in directories"
|
24
|
+
@echo " singlehtml to make a single large HTML file"
|
25
|
+
@echo " pickle to make pickle files"
|
26
|
+
@echo " json to make JSON files"
|
27
|
+
@echo " htmlhelp to make HTML files and a HTML help project"
|
28
|
+
@echo " qthelp to make HTML files and a qthelp project"
|
29
|
+
@echo " devhelp to make HTML files and a Devhelp project"
|
30
|
+
@echo " epub to make an epub"
|
31
|
+
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
|
32
|
+
@echo " latexpdf to make LaTeX files and run them through pdflatex"
|
33
|
+
@echo " text to make text files"
|
34
|
+
@echo " man to make manual pages"
|
35
|
+
@echo " texinfo to make Texinfo files"
|
36
|
+
@echo " info to make Texinfo files and run them through makeinfo"
|
37
|
+
@echo " gettext to make PO message catalogs"
|
38
|
+
@echo " changes to make an overview of all changed/added/deprecated items"
|
39
|
+
@echo " linkcheck to check all external links for integrity"
|
40
|
+
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
|
41
|
+
|
42
|
+
clean:
|
43
|
+
-rm -rf $(BUILDDIR)/*
|
44
|
+
|
45
|
+
html:
|
46
|
+
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
|
47
|
+
@echo
|
48
|
+
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
|
49
|
+
|
50
|
+
dirhtml:
|
51
|
+
$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
|
52
|
+
@echo
|
53
|
+
@echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
|
54
|
+
|
55
|
+
singlehtml:
|
56
|
+
$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
|
57
|
+
@echo
|
58
|
+
@echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
|
59
|
+
|
60
|
+
pickle:
|
61
|
+
$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
|
62
|
+
@echo
|
63
|
+
@echo "Build finished; now you can process the pickle files."
|
64
|
+
|
65
|
+
json:
|
66
|
+
$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
|
67
|
+
@echo
|
68
|
+
@echo "Build finished; now you can process the JSON files."
|
69
|
+
|
70
|
+
htmlhelp:
|
71
|
+
$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
|
72
|
+
@echo
|
73
|
+
@echo "Build finished; now you can run HTML Help Workshop with the" \
|
74
|
+
".hhp project file in $(BUILDDIR)/htmlhelp."
|
75
|
+
|
76
|
+
qthelp:
|
77
|
+
$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
|
78
|
+
@echo
|
79
|
+
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
|
80
|
+
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
|
81
|
+
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/behave.qhcp"
|
82
|
+
@echo "To view the help file:"
|
83
|
+
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/behave.qhc"
|
84
|
+
|
85
|
+
devhelp:
|
86
|
+
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
|
87
|
+
@echo
|
88
|
+
@echo "Build finished."
|
89
|
+
@echo "To view the help file:"
|
90
|
+
@echo "# mkdir -p $$HOME/.local/share/devhelp/behave"
|
91
|
+
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/behave"
|
92
|
+
@echo "# devhelp"
|
93
|
+
|
94
|
+
epub:
|
95
|
+
$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
|
96
|
+
@echo
|
97
|
+
@echo "Build finished. The epub file is in $(BUILDDIR)/epub."
|
98
|
+
|
99
|
+
latex:
|
100
|
+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
|
101
|
+
@echo
|
102
|
+
@echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
|
103
|
+
@echo "Run \`make' in that directory to run these through (pdf)latex" \
|
104
|
+
"(use \`make latexpdf' here to do that automatically)."
|
105
|
+
|
106
|
+
latexpdf:
|
107
|
+
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
|
108
|
+
@echo "Running LaTeX files through pdflatex..."
|
109
|
+
$(MAKE) -C $(BUILDDIR)/latex all-pdf
|
110
|
+
@echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
|
111
|
+
|
112
|
+
text:
|
113
|
+
$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
|
114
|
+
@echo
|
115
|
+
@echo "Build finished. The text files are in $(BUILDDIR)/text."
|
116
|
+
|
117
|
+
man:
|
118
|
+
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
|
119
|
+
@echo
|
120
|
+
@echo "Build finished. The manual pages are in $(BUILDDIR)/man."
|
121
|
+
|
122
|
+
texinfo:
|
123
|
+
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
|
124
|
+
@echo
|
125
|
+
@echo "Build finished. The Texinfo files are in $(BUILDDIR)/texinfo."
|
126
|
+
@echo "Run \`make' in that directory to run these through makeinfo" \
|
127
|
+
"(use \`make info' here to do that automatically)."
|
128
|
+
|
129
|
+
info:
|
130
|
+
$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo
|
131
|
+
@echo "Running Texinfo files through makeinfo..."
|
132
|
+
make -C $(BUILDDIR)/texinfo info
|
133
|
+
@echo "makeinfo finished; the Info files are in $(BUILDDIR)/texinfo."
|
134
|
+
|
135
|
+
gettext:
|
136
|
+
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale
|
137
|
+
@echo
|
138
|
+
@echo "Build finished. The message catalogs are in $(BUILDDIR)/locale."
|
139
|
+
|
140
|
+
changes:
|
141
|
+
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
|
142
|
+
@echo
|
143
|
+
@echo "The overview file is in $(BUILDDIR)/changes."
|
144
|
+
|
145
|
+
linkcheck:
|
146
|
+
$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
|
147
|
+
@echo
|
148
|
+
@echo "Link check complete; look for any errors in the above output " \
|
149
|
+
"or in $(BUILDDIR)/linkcheck/output.txt."
|
150
|
+
|
151
|
+
doctest:
|
152
|
+
$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest
|
153
|
+
@echo "Testing of doctests in the sources finished, look at the " \
|
154
|
+
"results in $(BUILDDIR)/doctest/output.txt."
|
@@ -0,0 +1,501 @@
|
|
1
|
+
/*
|
2
|
+
* agogo.css_t
|
3
|
+
* ~~~~~~~~~~~
|
4
|
+
*
|
5
|
+
* Sphinx stylesheet -- agogo theme.
|
6
|
+
*
|
7
|
+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
|
8
|
+
* :license: BSD, see LICENSE for details.
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
* {
|
13
|
+
margin: 0px;
|
14
|
+
padding: 0px;
|
15
|
+
}
|
16
|
+
|
17
|
+
pre {
|
18
|
+
font-family: "Monaco", "Andale Mono", "Courier", monospace;
|
19
|
+
}
|
20
|
+
|
21
|
+
body {
|
22
|
+
font-family: "Helvetica", "Arial", sans-serif;
|
23
|
+
/* line-height: 1.1em; */
|
24
|
+
line-height: 1.4em;
|
25
|
+
color: black;
|
26
|
+
background-color: #eeeeec;
|
27
|
+
}
|
28
|
+
|
29
|
+
|
30
|
+
/* Page layout */
|
31
|
+
|
32
|
+
div.header, div.content, div.footer {
|
33
|
+
width: 70em;
|
34
|
+
margin-left: auto;
|
35
|
+
margin-right: auto;
|
36
|
+
}
|
37
|
+
|
38
|
+
div.header-wrapper {
|
39
|
+
background: url(bgtop.png) top left repeat-x;
|
40
|
+
border-bottom: 3px solid #2e3436;
|
41
|
+
}
|
42
|
+
|
43
|
+
|
44
|
+
/* Default body styles */
|
45
|
+
a {
|
46
|
+
color: #ce5c00;
|
47
|
+
}
|
48
|
+
|
49
|
+
div.bodywrapper a, div.footer a {
|
50
|
+
text-decoration: underline;
|
51
|
+
}
|
52
|
+
|
53
|
+
.clearer {
|
54
|
+
clear: both;
|
55
|
+
}
|
56
|
+
|
57
|
+
.left {
|
58
|
+
float: left;
|
59
|
+
}
|
60
|
+
|
61
|
+
.right {
|
62
|
+
float: right;
|
63
|
+
}
|
64
|
+
|
65
|
+
.line-block {
|
66
|
+
display: block;
|
67
|
+
margin-top: 1em;
|
68
|
+
margin-bottom: 1em;
|
69
|
+
}
|
70
|
+
|
71
|
+
.line-block .line-block {
|
72
|
+
margin-top: 0;
|
73
|
+
margin-bottom: 0;
|
74
|
+
margin-left: 1.5em;
|
75
|
+
}
|
76
|
+
|
77
|
+
h1, h2, h3, h4 {
|
78
|
+
font-family: "Georgia", "Times New Roman", serif;
|
79
|
+
font-weight: normal;
|
80
|
+
color: #3465a4;
|
81
|
+
margin-bottom: .8em;
|
82
|
+
}
|
83
|
+
|
84
|
+
h1 {
|
85
|
+
color: #204a87;
|
86
|
+
}
|
87
|
+
|
88
|
+
h2 {
|
89
|
+
padding-bottom: .5em;
|
90
|
+
border-bottom: 1px solid #3465a4;
|
91
|
+
}
|
92
|
+
|
93
|
+
a.headerlink {
|
94
|
+
visibility: hidden;
|
95
|
+
color: #dddddd;
|
96
|
+
padding-left: .3em;
|
97
|
+
}
|
98
|
+
|
99
|
+
h1:hover > a.headerlink,
|
100
|
+
h2:hover > a.headerlink,
|
101
|
+
h3:hover > a.headerlink,
|
102
|
+
h4:hover > a.headerlink,
|
103
|
+
h5:hover > a.headerlink,
|
104
|
+
h6:hover > a.headerlink,
|
105
|
+
dt:hover > a.headerlink {
|
106
|
+
visibility: visible;
|
107
|
+
}
|
108
|
+
|
109
|
+
img {
|
110
|
+
border: 0;
|
111
|
+
}
|
112
|
+
|
113
|
+
div.admonition {
|
114
|
+
margin-top: 10px;
|
115
|
+
margin-bottom: 10px;
|
116
|
+
padding: 2px 7px 1px 7px;
|
117
|
+
border-left: 0.2em solid black;
|
118
|
+
}
|
119
|
+
|
120
|
+
p.admonition-title {
|
121
|
+
margin: 0px 10px 5px 0px;
|
122
|
+
font-weight: bold;
|
123
|
+
}
|
124
|
+
|
125
|
+
dt:target, .highlighted {
|
126
|
+
background-color: #fbe54e;
|
127
|
+
}
|
128
|
+
|
129
|
+
/* Header */
|
130
|
+
|
131
|
+
div.header {
|
132
|
+
padding-top: 10px;
|
133
|
+
padding-bottom: 10px;
|
134
|
+
}
|
135
|
+
|
136
|
+
div.header .headertitle {
|
137
|
+
font-family: "Georgia", "Times New Roman", serif;
|
138
|
+
/* font-family: "Georgia", "Times New Roman", serif; */
|
139
|
+
font-weight: normal;
|
140
|
+
font-size: 180%;
|
141
|
+
letter-spacing: .08em;
|
142
|
+
/*
|
143
|
+
margin-bottom: .8em;
|
144
|
+
*/
|
145
|
+
}
|
146
|
+
|
147
|
+
div.header .headertitle a {
|
148
|
+
color: white;
|
149
|
+
}
|
150
|
+
|
151
|
+
div.header div.rel {
|
152
|
+
text-align: right;
|
153
|
+
/*
|
154
|
+
margin-top: 1em;
|
155
|
+
*/
|
156
|
+
}
|
157
|
+
|
158
|
+
div.header div.rel a {
|
159
|
+
color: #fcaf3e;
|
160
|
+
letter-spacing: .1em;
|
161
|
+
text-transform: uppercase;
|
162
|
+
}
|
163
|
+
|
164
|
+
p.logo {
|
165
|
+
float: right;
|
166
|
+
}
|
167
|
+
|
168
|
+
img.logo {
|
169
|
+
border: 0;
|
170
|
+
}
|
171
|
+
|
172
|
+
|
173
|
+
/* Content */
|
174
|
+
div.content-wrapper {
|
175
|
+
background-color: white;
|
176
|
+
padding-top: 20px;
|
177
|
+
padding-bottom: 20px;
|
178
|
+
}
|
179
|
+
|
180
|
+
div.document {
|
181
|
+
width: 50em;
|
182
|
+
float: left;
|
183
|
+
}
|
184
|
+
|
185
|
+
div.body {
|
186
|
+
padding-right: 2em;
|
187
|
+
/* text-align: justify; */
|
188
|
+
}
|
189
|
+
|
190
|
+
div.document h1 {
|
191
|
+
line-height: 120%;
|
192
|
+
}
|
193
|
+
|
194
|
+
div.document ul {
|
195
|
+
margin: 1.5em;
|
196
|
+
list-style-type: square;
|
197
|
+
}
|
198
|
+
|
199
|
+
div.document dd {
|
200
|
+
margin-left: 1.2em;
|
201
|
+
margin-top: .4em;
|
202
|
+
margin-bottom: 1em;
|
203
|
+
}
|
204
|
+
|
205
|
+
div.document .section {
|
206
|
+
margin-top: 1.7em;
|
207
|
+
}
|
208
|
+
div.document .section:first-child {
|
209
|
+
margin-top: 0px;
|
210
|
+
}
|
211
|
+
|
212
|
+
div.document div.highlight-python, div.document div.highlight {
|
213
|
+
padding: 3px;
|
214
|
+
background-color: #eeeeec;
|
215
|
+
border-top: 2px solid #dddddd;
|
216
|
+
border-bottom: 2px solid #dddddd;
|
217
|
+
margin-top: .8em;
|
218
|
+
margin-bottom: .8em;
|
219
|
+
}
|
220
|
+
|
221
|
+
div.document div.highlight-python div.highlight {
|
222
|
+
background: none;
|
223
|
+
border: none;
|
224
|
+
margin: 0px;
|
225
|
+
}
|
226
|
+
|
227
|
+
div.document h2 {
|
228
|
+
margin-top: .7em;
|
229
|
+
}
|
230
|
+
|
231
|
+
div.document p {
|
232
|
+
margin-bottom: .5em;
|
233
|
+
}
|
234
|
+
|
235
|
+
div.document dl dd {
|
236
|
+
margin-top: 0px;
|
237
|
+
margin-bottom: 0px;
|
238
|
+
}
|
239
|
+
|
240
|
+
div.document dl dd p:last-child {
|
241
|
+
margin-bottom: 0px;
|
242
|
+
}
|
243
|
+
|
244
|
+
div.document dl.class > dt {
|
245
|
+
text-indent: -5em;
|
246
|
+
margin-left: 5em;
|
247
|
+
}
|
248
|
+
|
249
|
+
|
250
|
+
div.document li.toctree-l1 {
|
251
|
+
margin-bottom: 1em;
|
252
|
+
}
|
253
|
+
|
254
|
+
div.document .descname {
|
255
|
+
font-weight: bold;
|
256
|
+
}
|
257
|
+
|
258
|
+
div.document .docutils.literal {
|
259
|
+
background-color: #eeeeec;
|
260
|
+
padding: 1px;
|
261
|
+
}
|
262
|
+
|
263
|
+
div.document .docutils.xref.literal {
|
264
|
+
background-color: transparent;
|
265
|
+
padding: 0px;
|
266
|
+
}
|
267
|
+
|
268
|
+
div.document blockquote {
|
269
|
+
margin: 1em;
|
270
|
+
}
|
271
|
+
|
272
|
+
div.document ol {
|
273
|
+
margin: 1.5em;
|
274
|
+
}
|
275
|
+
|
276
|
+
dl.function, dl.class {
|
277
|
+
border-left: thick solid #ddd;
|
278
|
+
padding-left: 1em;
|
279
|
+
margin-bottom: .5em;
|
280
|
+
}
|
281
|
+
|
282
|
+
/* Sidebar */
|
283
|
+
|
284
|
+
div.sidebar {
|
285
|
+
width: 20em;
|
286
|
+
float: right;
|
287
|
+
font-size: .9em;
|
288
|
+
}
|
289
|
+
|
290
|
+
div.sidebar a, div.header a {
|
291
|
+
text-decoration: none;
|
292
|
+
}
|
293
|
+
|
294
|
+
div.sidebar a:hover, div.header a:hover {
|
295
|
+
text-decoration: underline;
|
296
|
+
}
|
297
|
+
|
298
|
+
div.sidebar h3 {
|
299
|
+
color: #2e3436;
|
300
|
+
text-transform: uppercase;
|
301
|
+
font-size: 130%;
|
302
|
+
letter-spacing: .1em;
|
303
|
+
}
|
304
|
+
|
305
|
+
div.sidebar ul {
|
306
|
+
list-style-type: none;
|
307
|
+
}
|
308
|
+
|
309
|
+
div.sidebar li.toctree-l1 a {
|
310
|
+
display: block;
|
311
|
+
padding: 1px;
|
312
|
+
border: 1px solid #dddddd;
|
313
|
+
background-color: #eeeeec;
|
314
|
+
margin-bottom: .4em;
|
315
|
+
padding-left: 3px;
|
316
|
+
color: #2e3436;
|
317
|
+
}
|
318
|
+
|
319
|
+
div.sidebar li.toctree-l2 a {
|
320
|
+
background-color: transparent;
|
321
|
+
border: none;
|
322
|
+
margin-left: 1em;
|
323
|
+
border-bottom: 1px solid #dddddd;
|
324
|
+
}
|
325
|
+
|
326
|
+
div.sidebar li.toctree-l3 a {
|
327
|
+
background-color: transparent;
|
328
|
+
border: none;
|
329
|
+
margin-left: 2em;
|
330
|
+
border-bottom: 1px solid #dddddd;
|
331
|
+
}
|
332
|
+
|
333
|
+
div.sidebar li.toctree-l2:last-child a {
|
334
|
+
border-bottom: none;
|
335
|
+
}
|
336
|
+
|
337
|
+
div.sidebar li.toctree-l1.current a {
|
338
|
+
border-right: 5px solid #fcaf3e;
|
339
|
+
}
|
340
|
+
|
341
|
+
div.sidebar li.toctree-l1.current li.toctree-l2 a {
|
342
|
+
border-right: none;
|
343
|
+
}
|
344
|
+
|
345
|
+
div.sidebar input[type="text"] {
|
346
|
+
width: 170px;
|
347
|
+
}
|
348
|
+
|
349
|
+
div.sidebar input[type="submit"] {
|
350
|
+
width: 30px;
|
351
|
+
}
|
352
|
+
|
353
|
+
|
354
|
+
/* Footer */
|
355
|
+
|
356
|
+
div.footer-wrapper {
|
357
|
+
background: url(bgfooter.png) top left repeat-x;
|
358
|
+
border-top: 4px solid #babdb6;
|
359
|
+
padding-top: 10px;
|
360
|
+
padding-bottom: 10px;
|
361
|
+
min-height: 80px;
|
362
|
+
}
|
363
|
+
|
364
|
+
div.footer, div.footer a {
|
365
|
+
color: #888a85;
|
366
|
+
}
|
367
|
+
|
368
|
+
div.footer .right {
|
369
|
+
text-align: right;
|
370
|
+
}
|
371
|
+
|
372
|
+
div.footer .left {
|
373
|
+
text-transform: uppercase;
|
374
|
+
}
|
375
|
+
|
376
|
+
|
377
|
+
/* Styles copied from basic theme */
|
378
|
+
|
379
|
+
img.align-left, .figure.align-left, object.align-left {
|
380
|
+
clear: left;
|
381
|
+
float: left;
|
382
|
+
margin-right: 1em;
|
383
|
+
}
|
384
|
+
|
385
|
+
img.align-right, .figure.align-right, object.align-right {
|
386
|
+
clear: right;
|
387
|
+
float: right;
|
388
|
+
margin-left: 1em;
|
389
|
+
}
|
390
|
+
|
391
|
+
img.align-center, .figure.align-center, object.align-center {
|
392
|
+
display: block;
|
393
|
+
margin-left: auto;
|
394
|
+
margin-right: auto;
|
395
|
+
}
|
396
|
+
|
397
|
+
.align-left {
|
398
|
+
text-align: left;
|
399
|
+
}
|
400
|
+
|
401
|
+
.align-center {
|
402
|
+
text-align: center;
|
403
|
+
}
|
404
|
+
|
405
|
+
.align-right {
|
406
|
+
text-align: right;
|
407
|
+
}
|
408
|
+
|
409
|
+
/* -- search page ----------------------------------------------------------- */
|
410
|
+
|
411
|
+
ul.search {
|
412
|
+
margin: 10px 0 0 20px;
|
413
|
+
padding: 0;
|
414
|
+
}
|
415
|
+
|
416
|
+
ul.search li {
|
417
|
+
padding: 5px 0 5px 20px;
|
418
|
+
background-image: url(file.png);
|
419
|
+
background-repeat: no-repeat;
|
420
|
+
background-position: 0 7px;
|
421
|
+
}
|
422
|
+
|
423
|
+
ul.search li a {
|
424
|
+
font-weight: bold;
|
425
|
+
}
|
426
|
+
|
427
|
+
ul.search li div.context {
|
428
|
+
color: #888;
|
429
|
+
margin: 2px 0 0 30px;
|
430
|
+
text-align: left;
|
431
|
+
}
|
432
|
+
|
433
|
+
ul.keywordmatches li.goodmatch a {
|
434
|
+
font-weight: bold;
|
435
|
+
}
|
436
|
+
|
437
|
+
/* -- index page ------------------------------------------------------------ */
|
438
|
+
|
439
|
+
table.contentstable {
|
440
|
+
width: 90%;
|
441
|
+
}
|
442
|
+
|
443
|
+
table.contentstable p.biglink {
|
444
|
+
line-height: 150%;
|
445
|
+
}
|
446
|
+
|
447
|
+
a.biglink {
|
448
|
+
font-size: 1.3em;
|
449
|
+
}
|
450
|
+
|
451
|
+
span.linkdescr {
|
452
|
+
font-style: italic;
|
453
|
+
padding-top: 5px;
|
454
|
+
font-size: 90%;
|
455
|
+
}
|
456
|
+
|
457
|
+
/* -- general index --------------------------------------------------------- */
|
458
|
+
|
459
|
+
table.indextable td {
|
460
|
+
text-align: left;
|
461
|
+
vertical-align: top;
|
462
|
+
}
|
463
|
+
|
464
|
+
table.indextable dl, table.indextable dd {
|
465
|
+
margin-top: 0;
|
466
|
+
margin-bottom: 0;
|
467
|
+
}
|
468
|
+
|
469
|
+
table.indextable tr.pcap {
|
470
|
+
height: 10px;
|
471
|
+
}
|
472
|
+
|
473
|
+
table.indextable tr.cap {
|
474
|
+
margin-top: 10px;
|
475
|
+
background-color: #f2f2f2;
|
476
|
+
}
|
477
|
+
|
478
|
+
img.toggler {
|
479
|
+
margin-right: 3px;
|
480
|
+
margin-top: 3px;
|
481
|
+
cursor: pointer;
|
482
|
+
}
|
483
|
+
|
484
|
+
/* -- viewcode extension ---------------------------------------------------- */
|
485
|
+
|
486
|
+
.viewcode-link {
|
487
|
+
float: right;
|
488
|
+
}
|
489
|
+
|
490
|
+
.viewcode-back {
|
491
|
+
float: right;
|
492
|
+
font-family:: "Ubuntu", sans-serif;
|
493
|
+
}
|
494
|
+
|
495
|
+
div.viewcode-block:target {
|
496
|
+
margin: -1px -3px;
|
497
|
+
padding: 0 3px;
|
498
|
+
background-color: #f4debf;
|
499
|
+
border-top: 1px solid #ac9;
|
500
|
+
border-bottom: 1px solid #ac9;
|
501
|
+
}
|