├── .all-contributorsrc ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .githooks.ini ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup-env │ │ └── action.yml ├── renovate.json5 └── workflows │ ├── benchmark.yaml │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .poetry-version ├── .prettierrc.toml ├── .python-version ├── .releaserc.js ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── assets ├── logo.png ├── logo.xd ├── usage_demo.gif └── usage_demo.svg ├── benchmarks ├── __init__.py ├── test_1000x.py └── test_standard.py ├── codecov.yml ├── conftest.py ├── mypy.ini ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── script ├── bootstrap └── demo ├── src └── syrupy │ ├── __init__.py │ ├── assertion.py │ ├── constants.py │ ├── data.py │ ├── exceptions.py │ ├── extensions │ ├── __init__.py │ ├── amber │ │ ├── __init__.py │ │ └── serializer.py │ ├── base.py │ ├── image.py │ ├── json │ │ └── __init__.py │ └── single_file.py │ ├── filters.py │ ├── location.py │ ├── matchers.py │ ├── patches │ ├── __init__.py │ └── pycharm_diff.py │ ├── py.typed │ ├── report.py │ ├── session.py │ ├── terminal.py │ ├── types.py │ └── utils.py ├── tasks ├── __init__.py ├── benchmark.py ├── build.py ├── install.py ├── lint.py ├── test.py └── utils.py └── tests ├── __init__.py ├── conftest.py ├── examples ├── __init__.py ├── __snaps_example__ │ └── test_custom_snapshot_directory.ambr ├── __snapshots__ │ ├── test_custom_defaults.ambr │ ├── test_custom_defaults │ │ ├── test_asserting_multiple_times_chained_json.1.json │ │ └── test_asserting_multiple_times_chained_json.json │ ├── test_custom_image_extension │ │ └── test_jpeg_image.jpg │ ├── test_custom_image_name_suffix │ │ ├── test_png_image_with_custom_name_suffix[blueish].png │ │ └── test_png_image_with_custom_name_suffix[reddish].png │ ├── test_custom_object_repr.ambr │ ├── test_custom_snapshot_name.ambr │ ├── test_custom_snapshot_name_suffix.ambr │ ├── v1 │ │ └── test_case_v1.json │ └── v2 │ │ └── test_case_v2.json ├── test_custom_defaults.py ├── test_custom_image_extension.py ├── test_custom_image_name_suffix.py ├── test_custom_object_repr.py ├── test_custom_snapshot_directory.py ├── test_custom_snapshot_directory_2.py ├── test_custom_snapshot_name.py └── test_custom_snapshot_name_suffix.py ├── integration ├── test_custom_comparator.py ├── test_invalid_bytes_single_file.py ├── test_pycharm_patch.py ├── test_pytest_extension.py ├── test_single_file_multiple_extensions.py ├── test_snapshot_diff.py ├── test_snapshot_option_defaults.py ├── test_snapshot_option_diff_mode.py ├── test_snapshot_option_dirname.py ├── test_snapshot_option_extension.py ├── test_snapshot_option_extension_pythonpath.py ├── test_snapshot_option_ignore_file_extensions.py ├── test_snapshot_option_include_details.py ├── test_snapshot_option_name.py ├── test_snapshot_option_update.py ├── test_snapshot_option_warn_unused.py ├── test_snapshot_outside_directory.py ├── test_snapshot_similar_names_default.py ├── test_snapshot_similar_names_file_extension.py ├── test_snapshot_skipped.py ├── test_snapshot_use_extension.py └── test_xfail.py └── syrupy ├── __init__.py ├── __snapshots__ ├── test_diff_mode.ambr └── test_doctest.ambr ├── extensions ├── __init__.py ├── __snapshots__ │ ├── test_amber_single_file │ │ ├── test_amber_single_file.1.ambr │ │ ├── test_amber_single_file.2.ambr │ │ └── test_amber_single_file.ambr │ ├── test_base.ambr │ └── test_single_file │ │ ├── TestClass.test_class_method_name.raw │ │ ├── TestClass.test_class_method_parametrized[x].raw │ │ ├── TestClass.test_class_method_parametrized[y].raw │ │ ├── TestClass.test_class_method_parametrized[z].raw │ │ ├── test_____underscore.raw │ │ ├── test_special_characters[.123~!@#$%^&()[]{}].raw │ │ ├── test_special_characters[].raw │ │ ├── test_special_characters[_].raw │ │ ├── test_special_characters[a].raw │ │ ├── test_special_characters[space space].raw │ │ ├── test_underscore.raw │ │ └── test_unicode[greek u1ff4].raw ├── amber │ ├── __init__.py │ ├── __snapshots__ │ │ ├── test_amber_filters.ambr │ │ ├── test_amber_matchers.ambr │ │ ├── test_amber_newlines.ambr │ │ ├── test_amber_serializer.ambr │ │ └── test_amber_snapshot_diff.ambr │ ├── test_amber_filters.py │ ├── test_amber_matchers.py │ ├── test_amber_newlines.py │ ├── test_amber_serializer.py │ └── test_amber_snapshot_diff.py ├── amber_sorted │ ├── __snapshots__ │ │ └── test_amber_sort.ambr │ └── test_amber_sort.py ├── image │ ├── __init__.py │ ├── __snapshots__ │ │ ├── test_image_png.ambr │ │ ├── test_image_png │ │ │ ├── test_image.png │ │ │ ├── test_multiple_snapshot_extensions.2.png │ │ │ └── test_multiple_snapshot_extensions.png │ │ ├── test_image_svg.ambr │ │ └── test_image_svg │ │ │ ├── test_image.svg │ │ │ ├── test_multiple_snapshot_extensions.2.svg │ │ │ └── test_multiple_snapshot_extensions.svg │ ├── test_image_png.py │ └── test_image_svg.py ├── json │ ├── __snapshots__ │ │ ├── test_json_filters │ │ │ ├── test_exclude_in_json_with_empty_values.json │ │ │ ├── test_exclude_nested.json │ │ │ ├── test_exclude_simple.1.json │ │ │ ├── test_exclude_simple.json │ │ │ ├── test_include_simple.1.json │ │ │ ├── test_include_simple.json │ │ │ ├── test_serializer[content0].json │ │ │ ├── test_serializer[content1].json │ │ │ └── test_serializer[content2].json │ │ ├── test_json_matchers │ │ │ └── test_matcher.json │ │ └── test_json_serializer │ │ │ ├── TestClass.TestNestedClass.test_nested_class_method[x].json │ │ │ ├── TestClass.TestNestedClass.test_nested_class_method[y].json │ │ │ ├── TestClass.TestNestedClass.test_nested_class_method[z].json │ │ │ ├── TestClass.test_class_method_name.json │ │ │ ├── TestClass.test_class_method_parametrized[a].json │ │ │ ├── TestClass.test_class_method_parametrized[b].json │ │ │ ├── TestClass.test_class_method_parametrized[c].json │ │ │ ├── TestSubClass.TestNestedClass.test_nested_class_method[x].json │ │ │ ├── TestSubClass.TestNestedClass.test_nested_class_method[y].json │ │ │ ├── TestSubClass.TestNestedClass.test_nested_class_method[z].json │ │ │ ├── TestSubClass.test_class_method_name.json │ │ │ ├── TestSubClass.test_class_method_parametrized[a].json │ │ │ ├── TestSubClass.test_class_method_parametrized[b].json │ │ │ ├── TestSubClass.test_class_method_parametrized[c].json │ │ │ ├── test_bool[False].json │ │ │ ├── test_bool[True].json │ │ │ ├── test_custom_object_repr.json │ │ │ ├── test_cycle[cyclic0].json │ │ │ ├── test_cycle[cyclic1].json │ │ │ ├── test_deeply_nested_multiline_string_in_dict.json │ │ │ ├── test_dict[actual0].json │ │ │ ├── test_dict[actual1].json │ │ │ ├── test_dict[actual2].json │ │ │ ├── test_dict[actual3].json │ │ │ ├── test_dict[actual4].json │ │ │ ├── test_dict[actual5].json │ │ │ ├── test_dict[actual6].json │ │ │ ├── test_doubly_parametrized[bar-foo].1.json │ │ │ ├── test_doubly_parametrized[bar-foo].json │ │ │ ├── test_empty_snapshot.1.json │ │ │ ├── test_empty_snapshot.json │ │ │ ├── test_function_in_file.json │ │ │ ├── test_function_local.json │ │ │ ├── test_list[actual0].json │ │ │ ├── test_list[actual1].json │ │ │ ├── test_list[actual2].json │ │ │ ├── test_list[actual3].json │ │ │ ├── test_multiline_string_in_dict.json │ │ │ ├── test_multiple_snapshots.1.json │ │ │ ├── test_multiple_snapshots.2.json │ │ │ ├── test_multiple_snapshots.json │ │ │ ├── test_newline_control_characters.1.json │ │ │ ├── test_newline_control_characters.2.json │ │ │ ├── test_newline_control_characters.3.json │ │ │ ├── test_newline_control_characters.4.json │ │ │ ├── test_newline_control_characters.5.json │ │ │ ├── test_newline_control_characters.json │ │ │ ├── test_numbers.1.json │ │ │ ├── test_numbers.2.json │ │ │ ├── test_numbers.json │ │ │ ├── test_ordered_dict.json │ │ │ ├── test_parameter_with_dot[value.with.dot].json │ │ │ ├── test_reflection.json │ │ │ ├── test_set[actual0].json │ │ │ ├── test_set[actual1].json │ │ │ ├── test_set[actual2].json │ │ │ ├── test_set[actual3].json │ │ │ ├── test_set[actual4].json │ │ │ ├── test_snapshot_markers.json │ │ │ ├── test_string[0].json │ │ │ ├── test_string[10].json │ │ │ ├── test_string[1].json │ │ │ ├── test_string[2].json │ │ │ ├── test_string[3].json │ │ │ ├── test_string[4].json │ │ │ ├── test_string[5].json │ │ │ ├── test_string[6].json │ │ │ ├── test_string[7].json │ │ │ ├── test_string[8].json │ │ │ ├── test_string[9].json │ │ │ ├── test_tuple.1.json │ │ │ ├── test_tuple.2.json │ │ │ └── test_tuple.json │ ├── test_json_filters.py │ ├── test_json_matchers.py │ └── test_json_serializer.py ├── test_amber_single_file.py ├── test_base.py └── test_single_file.py ├── test_diff_mode.py ├── test_doctest.py ├── test_doctest.txt ├── test_location.py └── test_utils.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.githooks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.githooks.ini -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/actions/setup-env/action.yml -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/benchmark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/workflows/benchmark.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.gitignore -------------------------------------------------------------------------------- /.poetry-version: -------------------------------------------------------------------------------- 1 | 2.2.1 2 | -------------------------------------------------------------------------------- /.prettierrc.toml: -------------------------------------------------------------------------------- 1 | tabWidth = 2 2 | -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.14.0 2 | -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.releaserc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/assets/logo.xd -------------------------------------------------------------------------------- /assets/usage_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/assets/usage_demo.gif -------------------------------------------------------------------------------- /assets/usage_demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/assets/usage_demo.svg -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/test_1000x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/benchmarks/test_1000x.py -------------------------------------------------------------------------------- /benchmarks/test_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/benchmarks/test_standard.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/codecov.yml -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/conftest.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/script/demo -------------------------------------------------------------------------------- /src/syrupy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/__init__.py -------------------------------------------------------------------------------- /src/syrupy/assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/assertion.py -------------------------------------------------------------------------------- /src/syrupy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/constants.py -------------------------------------------------------------------------------- /src/syrupy/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/data.py -------------------------------------------------------------------------------- /src/syrupy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/exceptions.py -------------------------------------------------------------------------------- /src/syrupy/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/extensions/__init__.py -------------------------------------------------------------------------------- /src/syrupy/extensions/amber/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/extensions/amber/__init__.py -------------------------------------------------------------------------------- /src/syrupy/extensions/amber/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/extensions/amber/serializer.py -------------------------------------------------------------------------------- /src/syrupy/extensions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/extensions/base.py -------------------------------------------------------------------------------- /src/syrupy/extensions/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/extensions/image.py -------------------------------------------------------------------------------- /src/syrupy/extensions/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/extensions/json/__init__.py -------------------------------------------------------------------------------- /src/syrupy/extensions/single_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/extensions/single_file.py -------------------------------------------------------------------------------- /src/syrupy/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/filters.py -------------------------------------------------------------------------------- /src/syrupy/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/location.py -------------------------------------------------------------------------------- /src/syrupy/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/matchers.py -------------------------------------------------------------------------------- /src/syrupy/patches/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/syrupy/patches/pycharm_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/patches/pycharm_diff.py -------------------------------------------------------------------------------- /src/syrupy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/syrupy/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/report.py -------------------------------------------------------------------------------- /src/syrupy/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/session.py -------------------------------------------------------------------------------- /src/syrupy/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/terminal.py -------------------------------------------------------------------------------- /src/syrupy/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/types.py -------------------------------------------------------------------------------- /src/syrupy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/src/syrupy/utils.py -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tasks/benchmark.py -------------------------------------------------------------------------------- /tasks/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tasks/build.py -------------------------------------------------------------------------------- /tasks/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tasks/install.py -------------------------------------------------------------------------------- /tasks/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tasks/lint.py -------------------------------------------------------------------------------- /tasks/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tasks/test.py -------------------------------------------------------------------------------- /tasks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tasks/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/__snaps_example__/test_custom_snapshot_directory.ambr: -------------------------------------------------------------------------------- 1 | # serializer version: 1 2 | # name: test_case_1 3 | 'Syrupy is amazing!' 4 | # --- 5 | -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_defaults.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/__snapshots__/test_custom_defaults.ambr -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_defaults/test_asserting_multiple_times_chained_json.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "my-field": "int" 3 | } 4 | -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_defaults/test_asserting_multiple_times_chained_json.json: -------------------------------------------------------------------------------- 1 | { 2 | "my-field": "str" 3 | } 4 | -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_image_extension/test_jpeg_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/__snapshots__/test_custom_image_extension/test_jpeg_image.jpg -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_image_name_suffix/test_png_image_with_custom_name_suffix[blueish].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/__snapshots__/test_custom_image_name_suffix/test_png_image_with_custom_name_suffix[blueish].png -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_image_name_suffix/test_png_image_with_custom_name_suffix[reddish].png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/__snapshots__/test_custom_image_name_suffix/test_png_image_with_custom_name_suffix[reddish].png -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_object_repr.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/__snapshots__/test_custom_object_repr.ambr -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_snapshot_name.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/__snapshots__/test_custom_snapshot_name.ambr -------------------------------------------------------------------------------- /tests/examples/__snapshots__/test_custom_snapshot_name_suffix.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/__snapshots__/test_custom_snapshot_name_suffix.ambr -------------------------------------------------------------------------------- /tests/examples/__snapshots__/v1/test_case_v1.json: -------------------------------------------------------------------------------- 1 | "From v1 of an API" 2 | -------------------------------------------------------------------------------- /tests/examples/__snapshots__/v2/test_case_v2.json: -------------------------------------------------------------------------------- 1 | "From v2 of an API" 2 | -------------------------------------------------------------------------------- /tests/examples/test_custom_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_defaults.py -------------------------------------------------------------------------------- /tests/examples/test_custom_image_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_image_extension.py -------------------------------------------------------------------------------- /tests/examples/test_custom_image_name_suffix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_image_name_suffix.py -------------------------------------------------------------------------------- /tests/examples/test_custom_object_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_object_repr.py -------------------------------------------------------------------------------- /tests/examples/test_custom_snapshot_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_snapshot_directory.py -------------------------------------------------------------------------------- /tests/examples/test_custom_snapshot_directory_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_snapshot_directory_2.py -------------------------------------------------------------------------------- /tests/examples/test_custom_snapshot_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_snapshot_name.py -------------------------------------------------------------------------------- /tests/examples/test_custom_snapshot_name_suffix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/examples/test_custom_snapshot_name_suffix.py -------------------------------------------------------------------------------- /tests/integration/test_custom_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_custom_comparator.py -------------------------------------------------------------------------------- /tests/integration/test_invalid_bytes_single_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_invalid_bytes_single_file.py -------------------------------------------------------------------------------- /tests/integration/test_pycharm_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_pycharm_patch.py -------------------------------------------------------------------------------- /tests/integration/test_pytest_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_pytest_extension.py -------------------------------------------------------------------------------- /tests/integration/test_single_file_multiple_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_single_file_multiple_extensions.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_diff.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_defaults.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_diff_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_diff_mode.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_dirname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_dirname.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_extension.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_extension_pythonpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_extension_pythonpath.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_ignore_file_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_ignore_file_extensions.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_include_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_include_details.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_name.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_update.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_option_warn_unused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_option_warn_unused.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_outside_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_outside_directory.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_similar_names_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_similar_names_default.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_similar_names_file_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_similar_names_file_extension.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_skipped.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_skipped.py -------------------------------------------------------------------------------- /tests/integration/test_snapshot_use_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_snapshot_use_extension.py -------------------------------------------------------------------------------- /tests/integration/test_xfail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/integration/test_xfail.py -------------------------------------------------------------------------------- /tests/syrupy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syrupy/__snapshots__/test_diff_mode.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/__snapshots__/test_diff_mode.ambr -------------------------------------------------------------------------------- /tests/syrupy/__snapshots__/test_doctest.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/__snapshots__/test_doctest.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_amber_single_file/test_amber_single_file.1.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/__snapshots__/test_amber_single_file/test_amber_single_file.1.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_amber_single_file/test_amber_single_file.2.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/__snapshots__/test_amber_single_file/test_amber_single_file.2.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_amber_single_file/test_amber_single_file.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/__snapshots__/test_amber_single_file/test_amber_single_file.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_base.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/__snapshots__/test_base.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/TestClass.test_class_method_name.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/__snapshots__/test_single_file/TestClass.test_class_method_name.raw -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/TestClass.test_class_method_parametrized[x].raw: -------------------------------------------------------------------------------- 1 | x -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/TestClass.test_class_method_parametrized[y].raw: -------------------------------------------------------------------------------- 1 | y -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/TestClass.test_class_method_parametrized[z].raw: -------------------------------------------------------------------------------- 1 | z -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_____underscore.raw: -------------------------------------------------------------------------------- 1 | orange -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_special_characters[.123~!@#$%^&()[]{}].raw: -------------------------------------------------------------------------------- 1 | .123~!@#$%^&*()/[]{}| -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_special_characters[].raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_special_characters[_].raw: -------------------------------------------------------------------------------- 1 | _ -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_special_characters[a].raw: -------------------------------------------------------------------------------- 1 | a? -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_special_characters[space space].raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/__snapshots__/test_single_file/test_special_characters[space space].raw -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_underscore.raw: -------------------------------------------------------------------------------- 1 | apple -------------------------------------------------------------------------------- /tests/syrupy/extensions/__snapshots__/test_single_file/test_unicode[greek u1ff4].raw: -------------------------------------------------------------------------------- 1 | greek ῴ -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/__snapshots__/test_amber_filters.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/__snapshots__/test_amber_filters.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/__snapshots__/test_amber_matchers.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/__snapshots__/test_amber_matchers.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/__snapshots__/test_amber_newlines.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/__snapshots__/test_amber_newlines.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/__snapshots__/test_amber_serializer.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/__snapshots__/test_amber_serializer.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/__snapshots__/test_amber_snapshot_diff.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/__snapshots__/test_amber_snapshot_diff.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/test_amber_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/test_amber_filters.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/test_amber_matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/test_amber_matchers.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/test_amber_newlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/test_amber_newlines.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/test_amber_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/test_amber_serializer.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber/test_amber_snapshot_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber/test_amber_snapshot_diff.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber_sorted/__snapshots__/test_amber_sort.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber_sorted/__snapshots__/test_amber_sort.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/amber_sorted/test_amber_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/amber_sorted/test_amber_sort.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_png.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_png.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_png/test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_png/test_image.png -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_png/test_multiple_snapshot_extensions.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_png/test_multiple_snapshot_extensions.2.png -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_png/test_multiple_snapshot_extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_png/test_multiple_snapshot_extensions.png -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_svg.ambr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_svg.ambr -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_svg/test_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_svg/test_image.svg -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_svg/test_multiple_snapshot_extensions.2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_svg/test_multiple_snapshot_extensions.2.svg -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/__snapshots__/test_image_svg/test_multiple_snapshot_extensions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/__snapshots__/test_image_svg/test_multiple_snapshot_extensions.svg -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/test_image_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/test_image_png.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/image/test_image_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/image/test_image_svg.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_in_json_with_empty_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_in_json_with_empty_values.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_nested.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_simple.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_simple.1.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_exclude_simple.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_include_simple.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_include_simple.1.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_include_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_include_simple.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_serializer[content0].json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_serializer[content1].json: -------------------------------------------------------------------------------- 1 | [ 2 | "an array" 3 | ] 4 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_serializer[content2].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_filters/test_serializer[content2].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_matchers/test_matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_matchers/test_matcher.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.TestNestedClass.test_nested_class_method[x].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.TestNestedClass.test_nested_class_method[x].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.TestNestedClass.test_nested_class_method[y].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.TestNestedClass.test_nested_class_method[y].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.TestNestedClass.test_nested_class_method[z].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.TestNestedClass.test_nested_class_method[z].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.test_class_method_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.test_class_method_name.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.test_class_method_parametrized[a].json: -------------------------------------------------------------------------------- 1 | "a" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.test_class_method_parametrized[b].json: -------------------------------------------------------------------------------- 1 | "b" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestClass.test_class_method_parametrized[c].json: -------------------------------------------------------------------------------- 1 | "c" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.TestNestedClass.test_nested_class_method[x].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.TestNestedClass.test_nested_class_method[x].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.TestNestedClass.test_nested_class_method[y].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.TestNestedClass.test_nested_class_method[y].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.TestNestedClass.test_nested_class_method[z].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.TestNestedClass.test_nested_class_method[z].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.test_class_method_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.test_class_method_name.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.test_class_method_parametrized[a].json: -------------------------------------------------------------------------------- 1 | "a" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.test_class_method_parametrized[b].json: -------------------------------------------------------------------------------- 1 | "b" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/TestSubClass.test_class_method_parametrized[c].json: -------------------------------------------------------------------------------- 1 | "c" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_bool[False].json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_bool[True].json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_custom_object_repr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_custom_object_repr.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_cycle[cyclic0].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_cycle[cyclic0].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_cycle[cyclic1].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_cycle[cyclic1].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_deeply_nested_multiline_string_in_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_deeply_nested_multiline_string_in_dict.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual0].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual0].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual1].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual1].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual2].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual2].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual3].json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual4].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual4].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual5].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual5].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual6].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_dict[actual6].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_doubly_parametrized[bar-foo].1.json: -------------------------------------------------------------------------------- 1 | "bar" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_doubly_parametrized[bar-foo].json: -------------------------------------------------------------------------------- 1 | "foo" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_empty_snapshot.1.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_empty_snapshot.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_function_in_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_function_in_file.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_function_local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_function_local.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_list[actual0].json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_list[actual1].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_list[actual1].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_list[actual2].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_list[actual2].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_list[actual3].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_list[actual3].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_multiline_string_in_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_multiline_string_in_dict.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_multiple_snapshots.1.json: -------------------------------------------------------------------------------- 1 | "Second." 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_multiple_snapshots.2.json: -------------------------------------------------------------------------------- 1 | "Third." 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_multiple_snapshots.json: -------------------------------------------------------------------------------- 1 | "First." 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.1.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.2.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.3.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.4.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.5.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_newline_control_characters.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_numbers.1.json: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_numbers.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_numbers.2.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_numbers.json: -------------------------------------------------------------------------------- 1 | 3.5 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_ordered_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_ordered_dict.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_parameter_with_dot[value.with.dot].json: -------------------------------------------------------------------------------- 1 | "value.with.dot" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_reflection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_reflection.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual0].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual0].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual1].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual1].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual2].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual2].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual3].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual3].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_set[actual4].json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_snapshot_markers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_snapshot_markers.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[0].json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[10].json: -------------------------------------------------------------------------------- 1 | "b'Byte string'" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[1].json: -------------------------------------------------------------------------------- 1 | "Raw string" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[2].json: -------------------------------------------------------------------------------- 1 | "Escaped \\n" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[3].json: -------------------------------------------------------------------------------- 1 | "Backslash \\u U" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[4].json: -------------------------------------------------------------------------------- 1 | "🥞🐍🍯" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[5].json: -------------------------------------------------------------------------------- 1 | "singleline:" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[6].json: -------------------------------------------------------------------------------- 1 | "- singleline" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[7].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[7].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[8].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[8].json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_string[9].json: -------------------------------------------------------------------------------- 1 | "string with 'quotes'" 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_tuple.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_tuple.1.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_tuple.2.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_tuple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/__snapshots__/test_json_serializer/test_tuple.json -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/test_json_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/test_json_filters.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/test_json_matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/test_json_matchers.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/json/test_json_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/json/test_json_serializer.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/test_amber_single_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/test_amber_single_file.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/test_base.py -------------------------------------------------------------------------------- /tests/syrupy/extensions/test_single_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/extensions/test_single_file.py -------------------------------------------------------------------------------- /tests/syrupy/test_diff_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/test_diff_mode.py -------------------------------------------------------------------------------- /tests/syrupy/test_doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/test_doctest.py -------------------------------------------------------------------------------- /tests/syrupy/test_doctest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/test_doctest.txt -------------------------------------------------------------------------------- /tests/syrupy/test_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/test_location.py -------------------------------------------------------------------------------- /tests/syrupy/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syrupy-project/syrupy/HEAD/tests/syrupy/test_utils.py --------------------------------------------------------------------------------