Split test_direct_api.py in many smaller tests

This commit is contained in:
gumyr 2025-01-21 21:37:52 -05:00
parent 5e6f3b3337
commit 23e035a1ce
34 changed files with 6158 additions and 10 deletions

View file

@ -0,0 +1,40 @@
"""
build123d direct api tests
name: test_always_equal.py
by: Gumyr
date: January 21, 2025
desc:
This python module contains tests for the build123d project.
license:
Copyright 2025 Gumyr
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 unittest
class AlwaysEqual:
def __eq__(self, other):
return True
if __name__ == "__main__":
import unittest
unittest.main()