about summary refs log tree commit diff
path: root/.venv/lib/python3.12/site-packages/test/unit/test_project.py
diff options
context:
space:
mode:
Diffstat (limited to '.venv/lib/python3.12/site-packages/test/unit/test_project.py')
-rw-r--r--.venv/lib/python3.12/site-packages/test/unit/test_project.py52
1 files changed, 52 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/test/unit/test_project.py b/.venv/lib/python3.12/site-packages/test/unit/test_project.py
new file mode 100644
index 00000000..40282bdb
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/test/unit/test_project.py
@@ -0,0 +1,52 @@
+import os
+import unittest
+
+
+class ProjectTests(unittest.TestCase):
+    # ./.env_sample
+    def test_env(self):
+        self.assertTrue(os.path.isfile('./.env_sample'))
+
+    # ./.gitignore
+    def test_gitignore(self):
+        self.assertTrue(os.path.isfile('./.gitignore'))
+
+    # ./CHANGELOG.md
+    def test_changelog(self):
+        self.assertTrue(os.path.isfile('./CHANGELOG.md'))
+
+    # ./CODE_OF_CONDUCT.md
+    def test_code_of_conduct(self):
+        self.assertTrue(os.path.isfile('./CODE_OF_CONDUCT.md'))
+
+    # ./CONTRIBUTING.md
+    def test_contributing(self):
+        self.assertTrue(os.path.isfile('./CONTRIBUTING.md'))
+
+    # ./LICENSE
+    def test_license(self):
+        self.assertTrue(os.path.isfile('./LICENSE'))
+
+    # ./PULL_REQUEST_TEMPLATE.md
+    def test_pr_template(self):
+        self.assertTrue(os.path.isfile('./PULL_REQUEST_TEMPLATE.md'))
+
+    # ./README.rst
+    def test_readme(self):
+        self.assertTrue(os.path.isfile('./README.rst'))
+
+    # ./TROUBLESHOOTING.md
+    def test_troubleshooting(self):
+        self.assertTrue(os.path.isfile('./TROUBLESHOOTING.md'))
+
+    # ./USAGE.md
+    def test_usage(self):
+        self.assertTrue(os.path.isfile('./USAGE.md'))
+
+    # ./use-cases/README.md
+    def test_use_cases(self):
+        self.assertTrue(os.path.isfile('./use_cases/README.md'))
+
+
+if __name__ == '__main__':
+    unittest.main()