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
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,45 @@
|
|
1
|
+
Modifications:
|
2
|
+
|
3
|
+
Copyright (c) 2011 Kenneth Reitz.
|
4
|
+
|
5
|
+
|
6
|
+
Original Project:
|
7
|
+
|
8
|
+
Copyright (c) 2010 by Armin Ronacher.
|
9
|
+
|
10
|
+
|
11
|
+
Some rights reserved.
|
12
|
+
|
13
|
+
Redistribution and use in source and binary forms of the theme, with or
|
14
|
+
without modification, are permitted provided that the following conditions
|
15
|
+
are met:
|
16
|
+
|
17
|
+
* Redistributions of source code must retain the above copyright
|
18
|
+
notice, this list of conditions and the following disclaimer.
|
19
|
+
|
20
|
+
* Redistributions in binary form must reproduce the above
|
21
|
+
copyright notice, this list of conditions and the following
|
22
|
+
disclaimer in the documentation and/or other materials provided
|
23
|
+
with the distribution.
|
24
|
+
|
25
|
+
* The names of the contributors may not be used to endorse or
|
26
|
+
promote products derived from this software without specific
|
27
|
+
prior written permission.
|
28
|
+
|
29
|
+
We kindly ask you to only use these themes in an unmodified manner just
|
30
|
+
for Flask and Flask-related products, not for unrelated projects. If you
|
31
|
+
like the visual style and want to use it for your own projects, please
|
32
|
+
consider making some larger changes to the themes (such as changing
|
33
|
+
font faces, sizes, colors or margins).
|
34
|
+
|
35
|
+
THIS THEME IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
36
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
37
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
38
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
39
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
40
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
41
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
42
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
43
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
44
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS THEME, EVEN IF ADVISED OF THE
|
45
|
+
POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{%- extends "basic/layout.html" %}
|
2
|
+
{%- block extrahead %}
|
3
|
+
{{ super() }}
|
4
|
+
{% if theme_touch_icon %}
|
5
|
+
<link rel="apple-touch-icon" href="{{ pathto('_static/' ~ theme_touch_icon, 1) }}" />
|
6
|
+
{% endif %}
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
|
8
|
+
{% endblock %}
|
9
|
+
{%- block relbar2 %}{% endblock %}
|
10
|
+
{%- block footer %}
|
11
|
+
<div class="footer">
|
12
|
+
© Copyright {{ copyright }}.
|
13
|
+
</div>
|
14
|
+
<a href="https://github.com/behave/behave" class="github">
|
15
|
+
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
|
16
|
+
</a>
|
17
|
+
{%- endblock %}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<h3>Related Topics</h3>
|
2
|
+
<ul>
|
3
|
+
<li><a href="{{ pathto(master_doc) }}">Documentation overview</a><ul>
|
4
|
+
{%- for parent in parents %}
|
5
|
+
<li><a href="{{ parent.link|e }}">{{ parent.title }}</a><ul>
|
6
|
+
{%- endfor %}
|
7
|
+
{%- if prev %}
|
8
|
+
<li>Previous: <a href="{{ prev.link|e }}" title="{{ _('previous chapter')
|
9
|
+
}}">{{ prev.title }}</a></li>
|
10
|
+
{%- endif %}
|
11
|
+
{%- if next %}
|
12
|
+
<li>Next: <a href="{{ next.link|e }}" title="{{ _('next chapter')
|
13
|
+
}}">{{ next.title }}</a></li>
|
14
|
+
{%- endif %}
|
15
|
+
{%- for parent in parents %}
|
16
|
+
</ul></li>
|
17
|
+
{%- endfor %}
|
18
|
+
</ul></li>
|
19
|
+
</ul>
|
@@ -0,0 +1,480 @@
|
|
1
|
+
/*
|
2
|
+
* flasky.css_t
|
3
|
+
* ~~~~~~~~~~~~
|
4
|
+
*
|
5
|
+
* :copyright: Copyright 2010 by Armin Ronacher. Modifications by Kenneth Reitz.
|
6
|
+
* :license: Flask Design License, see LICENSE for details.
|
7
|
+
*/
|
8
|
+
|
9
|
+
{% set page_width = '940px' %}
|
10
|
+
{% set sidebar_width = '220px' %}
|
11
|
+
|
12
|
+
@import url("basic.css");
|
13
|
+
|
14
|
+
/* -- page layout ----------------------------------------------------------- */
|
15
|
+
|
16
|
+
body {
|
17
|
+
font-family: 'goudy old style', 'minion pro', 'bell mt', Georgia, 'Hiragino Mincho Pro';
|
18
|
+
font-size: 17px;
|
19
|
+
background-color: white;
|
20
|
+
color: #000;
|
21
|
+
margin: 0;
|
22
|
+
padding: 0;
|
23
|
+
}
|
24
|
+
|
25
|
+
div.document {
|
26
|
+
width: {{ page_width }};
|
27
|
+
margin: 30px auto 0 auto;
|
28
|
+
}
|
29
|
+
|
30
|
+
div.documentwrapper {
|
31
|
+
float: left;
|
32
|
+
width: 100%;
|
33
|
+
}
|
34
|
+
|
35
|
+
div.bodywrapper {
|
36
|
+
margin: 0 0 0 {{ sidebar_width }};
|
37
|
+
}
|
38
|
+
|
39
|
+
div.sphinxsidebar {
|
40
|
+
width: {{ sidebar_width }};
|
41
|
+
}
|
42
|
+
|
43
|
+
hr {
|
44
|
+
border: 1px solid #B1B4B6;
|
45
|
+
}
|
46
|
+
|
47
|
+
div.body {
|
48
|
+
background-color: #ffffff;
|
49
|
+
color: #3E4349;
|
50
|
+
padding: 0 30px 0 30px;
|
51
|
+
}
|
52
|
+
|
53
|
+
img.floatingflask {
|
54
|
+
padding: 0 0 10px 10px;
|
55
|
+
float: right;
|
56
|
+
}
|
57
|
+
|
58
|
+
div.footer {
|
59
|
+
width: {{ page_width }};
|
60
|
+
margin: 20px auto 30px auto;
|
61
|
+
font-size: 14px;
|
62
|
+
color: #888;
|
63
|
+
text-align: right;
|
64
|
+
}
|
65
|
+
|
66
|
+
div.footer a {
|
67
|
+
color: #888;
|
68
|
+
}
|
69
|
+
|
70
|
+
div.related {
|
71
|
+
display: none;
|
72
|
+
}
|
73
|
+
|
74
|
+
div.sphinxsidebar a {
|
75
|
+
color: #444;
|
76
|
+
text-decoration: none;
|
77
|
+
border-bottom: 1px dotted #999;
|
78
|
+
}
|
79
|
+
|
80
|
+
div.sphinxsidebar a:hover {
|
81
|
+
border-bottom: 1px solid #999;
|
82
|
+
}
|
83
|
+
|
84
|
+
div.sphinxsidebar {
|
85
|
+
font-size: 14px;
|
86
|
+
line-height: 1.5;
|
87
|
+
}
|
88
|
+
|
89
|
+
div.sphinxsidebarwrapper {
|
90
|
+
padding: 18px 10px;
|
91
|
+
}
|
92
|
+
|
93
|
+
div.sphinxsidebarwrapper p.logo {
|
94
|
+
padding: 0;
|
95
|
+
margin: -10px 0 0 -20px;
|
96
|
+
text-align: center;
|
97
|
+
}
|
98
|
+
|
99
|
+
div.sphinxsidebar h3,
|
100
|
+
div.sphinxsidebar h4 {
|
101
|
+
font-family: 'Garamond', 'Georgia', serif;
|
102
|
+
color: #444;
|
103
|
+
font-size: 24px;
|
104
|
+
font-weight: normal;
|
105
|
+
margin: 0 0 5px 0;
|
106
|
+
padding: 0;
|
107
|
+
}
|
108
|
+
|
109
|
+
div.sphinxsidebar h4 {
|
110
|
+
font-size: 20px;
|
111
|
+
}
|
112
|
+
|
113
|
+
div.sphinxsidebar h3 a {
|
114
|
+
color: #444;
|
115
|
+
}
|
116
|
+
|
117
|
+
div.sphinxsidebar p.logo a,
|
118
|
+
div.sphinxsidebar h3 a,
|
119
|
+
div.sphinxsidebar p.logo a:hover,
|
120
|
+
div.sphinxsidebar h3 a:hover {
|
121
|
+
border: none;
|
122
|
+
}
|
123
|
+
|
124
|
+
div.sphinxsidebar p {
|
125
|
+
color: #555;
|
126
|
+
margin: 10px 0;
|
127
|
+
}
|
128
|
+
|
129
|
+
div.sphinxsidebar ul {
|
130
|
+
margin: 10px 0;
|
131
|
+
padding: 0;
|
132
|
+
color: #000;
|
133
|
+
}
|
134
|
+
|
135
|
+
div.sphinxsidebar input {
|
136
|
+
border: 1px solid #ccc;
|
137
|
+
font-family: 'Georgia', serif;
|
138
|
+
font-size: 1em;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* -- body styles ----------------------------------------------------------- */
|
142
|
+
|
143
|
+
a {
|
144
|
+
color: #004B6B;
|
145
|
+
text-decoration: underline;
|
146
|
+
}
|
147
|
+
|
148
|
+
a:hover {
|
149
|
+
color: #6D4100;
|
150
|
+
text-decoration: underline;
|
151
|
+
}
|
152
|
+
|
153
|
+
div.body h1,
|
154
|
+
div.body h2,
|
155
|
+
div.body h3,
|
156
|
+
div.body h4,
|
157
|
+
div.body h5,
|
158
|
+
div.body h6 {
|
159
|
+
font-family: 'Garamond', 'Georgia', serif;
|
160
|
+
font-weight: normal;
|
161
|
+
margin: 30px 0px 10px 0px;
|
162
|
+
padding: 0;
|
163
|
+
}
|
164
|
+
|
165
|
+
div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; }
|
166
|
+
div.body h2 { font-size: 180%; }
|
167
|
+
div.body h3 { font-size: 150%; }
|
168
|
+
div.body h4 { font-size: 130%; }
|
169
|
+
div.body h5 { font-size: 100%; }
|
170
|
+
div.body h6 { font-size: 100%; }
|
171
|
+
|
172
|
+
a.headerlink {
|
173
|
+
color: #ddd;
|
174
|
+
padding: 0 4px;
|
175
|
+
text-decoration: none;
|
176
|
+
}
|
177
|
+
|
178
|
+
a.headerlink:hover {
|
179
|
+
color: #444;
|
180
|
+
background: #eaeaea;
|
181
|
+
}
|
182
|
+
|
183
|
+
div.body p, div.body dd, div.body li {
|
184
|
+
line-height: 1.4em;
|
185
|
+
}
|
186
|
+
|
187
|
+
div.admonition {
|
188
|
+
background: #fafafa;
|
189
|
+
margin: 20px -30px;
|
190
|
+
padding: 10px 30px;
|
191
|
+
border-top: 1px solid #ccc;
|
192
|
+
border-bottom: 1px solid #ccc;
|
193
|
+
}
|
194
|
+
|
195
|
+
div.admonition tt.xref, div.admonition a tt {
|
196
|
+
border-bottom: 1px solid #fafafa;
|
197
|
+
}
|
198
|
+
|
199
|
+
dd div.admonition {
|
200
|
+
margin-left: -60px;
|
201
|
+
padding-left: 60px;
|
202
|
+
}
|
203
|
+
|
204
|
+
div.admonition p.admonition-title {
|
205
|
+
font-family: 'Garamond', 'Georgia', serif;
|
206
|
+
font-weight: normal;
|
207
|
+
font-size: 24px;
|
208
|
+
margin: 0 0 10px 0;
|
209
|
+
padding: 0;
|
210
|
+
line-height: 1;
|
211
|
+
}
|
212
|
+
|
213
|
+
div.admonition p.last {
|
214
|
+
margin-bottom: 0;
|
215
|
+
}
|
216
|
+
|
217
|
+
div.highlight {
|
218
|
+
background-color: white;
|
219
|
+
}
|
220
|
+
|
221
|
+
dt:target, .highlight {
|
222
|
+
background: #FAF3E8;
|
223
|
+
}
|
224
|
+
|
225
|
+
div.note {
|
226
|
+
background-color: #eee;
|
227
|
+
border: 1px solid #ccc;
|
228
|
+
}
|
229
|
+
|
230
|
+
div.seealso {
|
231
|
+
background-color: #ffc;
|
232
|
+
border: 1px solid #ff6;
|
233
|
+
}
|
234
|
+
|
235
|
+
div.topic {
|
236
|
+
background-color: #eee;
|
237
|
+
}
|
238
|
+
|
239
|
+
p.admonition-title {
|
240
|
+
display: inline;
|
241
|
+
}
|
242
|
+
|
243
|
+
p.admonition-title:after {
|
244
|
+
content: ":";
|
245
|
+
}
|
246
|
+
|
247
|
+
pre, tt {
|
248
|
+
font-family: 'Consolas', 'Menlo', 'Deja Vu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
|
249
|
+
font-size: 0.9em;
|
250
|
+
}
|
251
|
+
|
252
|
+
img.screenshot {
|
253
|
+
}
|
254
|
+
|
255
|
+
tt.descname, tt.descclassname {
|
256
|
+
font-size: 0.95em;
|
257
|
+
}
|
258
|
+
|
259
|
+
tt.descname {
|
260
|
+
padding-right: 0.08em;
|
261
|
+
}
|
262
|
+
|
263
|
+
img.screenshot {
|
264
|
+
-moz-box-shadow: 2px 2px 4px #eee;
|
265
|
+
-webkit-box-shadow: 2px 2px 4px #eee;
|
266
|
+
box-shadow: 2px 2px 4px #eee;
|
267
|
+
}
|
268
|
+
|
269
|
+
table.docutils {
|
270
|
+
border: 1px solid #888;
|
271
|
+
-moz-box-shadow: 2px 2px 4px #eee;
|
272
|
+
-webkit-box-shadow: 2px 2px 4px #eee;
|
273
|
+
box-shadow: 2px 2px 4px #eee;
|
274
|
+
}
|
275
|
+
|
276
|
+
table.docutils td, table.docutils th {
|
277
|
+
border: 1px solid #888;
|
278
|
+
padding: 0.25em 0.7em;
|
279
|
+
}
|
280
|
+
|
281
|
+
table.field-list, table.footnote {
|
282
|
+
border: none;
|
283
|
+
-moz-box-shadow: none;
|
284
|
+
-webkit-box-shadow: none;
|
285
|
+
box-shadow: none;
|
286
|
+
}
|
287
|
+
|
288
|
+
table.footnote {
|
289
|
+
margin: 15px 0;
|
290
|
+
width: 100%;
|
291
|
+
border: 1px solid #eee;
|
292
|
+
background: #fdfdfd;
|
293
|
+
font-size: 0.9em;
|
294
|
+
}
|
295
|
+
|
296
|
+
table.footnote + table.footnote {
|
297
|
+
margin-top: -15px;
|
298
|
+
border-top: none;
|
299
|
+
}
|
300
|
+
|
301
|
+
table.field-list th {
|
302
|
+
padding: 0 0.8em 0 0;
|
303
|
+
}
|
304
|
+
|
305
|
+
table.field-list td {
|
306
|
+
padding: 0;
|
307
|
+
}
|
308
|
+
|
309
|
+
table.footnote td.label {
|
310
|
+
width: 0px;
|
311
|
+
padding: 0.3em 0 0.3em 0.5em;
|
312
|
+
}
|
313
|
+
|
314
|
+
table.footnote td {
|
315
|
+
padding: 0.3em 0.5em;
|
316
|
+
}
|
317
|
+
|
318
|
+
dl {
|
319
|
+
margin: 0;
|
320
|
+
padding: 0;
|
321
|
+
}
|
322
|
+
|
323
|
+
dl dd {
|
324
|
+
margin-left: 30px;
|
325
|
+
}
|
326
|
+
|
327
|
+
blockquote {
|
328
|
+
margin: 0 0 0 30px;
|
329
|
+
padding: 0;
|
330
|
+
}
|
331
|
+
|
332
|
+
ul, ol {
|
333
|
+
margin: 10px 0 10px 30px;
|
334
|
+
padding: 0;
|
335
|
+
}
|
336
|
+
|
337
|
+
pre {
|
338
|
+
background: #eee;
|
339
|
+
padding: 7px 30px;
|
340
|
+
margin: 15px -30px;
|
341
|
+
line-height: 1.3em;
|
342
|
+
}
|
343
|
+
|
344
|
+
dl pre, blockquote pre, li pre {
|
345
|
+
margin-left: -60px;
|
346
|
+
padding-left: 60px;
|
347
|
+
}
|
348
|
+
|
349
|
+
dl dl pre {
|
350
|
+
margin-left: -90px;
|
351
|
+
padding-left: 90px;
|
352
|
+
}
|
353
|
+
|
354
|
+
tt {
|
355
|
+
background-color: #ecf0f3;
|
356
|
+
color: #222;
|
357
|
+
/* padding: 1px 2px; */
|
358
|
+
}
|
359
|
+
|
360
|
+
tt.xref, a tt {
|
361
|
+
background-color: #FBFBFB;
|
362
|
+
border-bottom: 1px solid white;
|
363
|
+
}
|
364
|
+
|
365
|
+
a.reference {
|
366
|
+
text-decoration: none;
|
367
|
+
border-bottom: 1px dotted #004B6B;
|
368
|
+
}
|
369
|
+
|
370
|
+
a.reference:hover {
|
371
|
+
border-bottom: 1px solid #6D4100;
|
372
|
+
}
|
373
|
+
|
374
|
+
a.footnote-reference {
|
375
|
+
text-decoration: none;
|
376
|
+
font-size: 0.7em;
|
377
|
+
vertical-align: top;
|
378
|
+
border-bottom: 1px dotted #004B6B;
|
379
|
+
}
|
380
|
+
|
381
|
+
a.footnote-reference:hover {
|
382
|
+
border-bottom: 1px solid #6D4100;
|
383
|
+
}
|
384
|
+
|
385
|
+
a:hover tt {
|
386
|
+
background: #EEE;
|
387
|
+
}
|
388
|
+
|
389
|
+
|
390
|
+
@media screen and (max-width: 600px) {
|
391
|
+
|
392
|
+
div.sphinxsidebar {
|
393
|
+
display: none;
|
394
|
+
}
|
395
|
+
|
396
|
+
div.document {
|
397
|
+
width: 100%;
|
398
|
+
|
399
|
+
}
|
400
|
+
|
401
|
+
div.documentwrapper {
|
402
|
+
margin-left: 0;
|
403
|
+
margin-top: 0;
|
404
|
+
margin-right: 0;
|
405
|
+
margin-bottom: 0;
|
406
|
+
}
|
407
|
+
|
408
|
+
div.bodywrapper {
|
409
|
+
margin-top: 0;
|
410
|
+
margin-right: 0;
|
411
|
+
margin-bottom: 0;
|
412
|
+
margin-left: 0;
|
413
|
+
}
|
414
|
+
|
415
|
+
ul {
|
416
|
+
margin-left: 0;
|
417
|
+
}
|
418
|
+
|
419
|
+
.document {
|
420
|
+
width: auto;
|
421
|
+
}
|
422
|
+
|
423
|
+
.footer {
|
424
|
+
width: auto;
|
425
|
+
}
|
426
|
+
|
427
|
+
.bodywrapper {
|
428
|
+
margin: 0;
|
429
|
+
}
|
430
|
+
|
431
|
+
.footer {
|
432
|
+
width: auto;
|
433
|
+
}
|
434
|
+
|
435
|
+
.github {
|
436
|
+
display: none;
|
437
|
+
}
|
438
|
+
|
439
|
+
}
|
440
|
+
|
441
|
+
|
442
|
+
/* scrollbars */
|
443
|
+
|
444
|
+
::-webkit-scrollbar {
|
445
|
+
width: 6px;
|
446
|
+
height: 6px;
|
447
|
+
}
|
448
|
+
|
449
|
+
::-webkit-scrollbar-button:start:decrement,
|
450
|
+
::-webkit-scrollbar-button:end:increment {
|
451
|
+
display: block;
|
452
|
+
height: 10px;
|
453
|
+
}
|
454
|
+
|
455
|
+
::-webkit-scrollbar-button:vertical:increment {
|
456
|
+
background-color: #fff;
|
457
|
+
}
|
458
|
+
|
459
|
+
::-webkit-scrollbar-track-piece {
|
460
|
+
background-color: #eee;
|
461
|
+
-webkit-border-radius: 3px;
|
462
|
+
}
|
463
|
+
|
464
|
+
::-webkit-scrollbar-thumb:vertical {
|
465
|
+
height: 50px;
|
466
|
+
background-color: #ccc;
|
467
|
+
-webkit-border-radius: 3px;
|
468
|
+
}
|
469
|
+
|
470
|
+
::-webkit-scrollbar-thumb:horizontal {
|
471
|
+
width: 50px;
|
472
|
+
background-color: #ccc;
|
473
|
+
-webkit-border-radius: 3px;
|
474
|
+
}
|
475
|
+
|
476
|
+
/* misc. */
|
477
|
+
|
478
|
+
.revsys-inline {
|
479
|
+
display: none!important;
|
480
|
+
}
|