Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
abates committed Sep 26, 2024
1 parent ab7bf4a commit e465626
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
1 change: 0 additions & 1 deletion diffsync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
Set,
)
from typing_extensions import deprecated
import warnings

from pydantic import ConfigDict, BaseModel, PrivateAttr
import structlog # type: ignore
Expand Down
24 changes: 22 additions & 2 deletions tests/unit/test_deprecation.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
"""Unit tests for the DiffSync deprecation warning.
from diffsync import DiffSync
Copyright (c) 2020-2024 Network To Code, LLC <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

import pytest

from diffsync import DiffSync


def test_diffsync_deprecation_warning():
"""Test that `DiffSync` causes a deprecation warning."""
with pytest.deprecated_call():
class TestAdapter(DiffSync):

class TestAdapter(DiffSync): # pylint:disable=missing-class-docstring
pass

TestAdapter()

0 comments on commit e465626

Please sign in to comment.