From 4a52a71956a8d46fcb7294ac71734504bb09bcc2 Mon Sep 17 00:00:00 2001 From: S. Solomon Darnell Date: Fri, 28 Mar 2025 21:52:21 -0500 Subject: two version of R2R are here --- .../site-packages/test/unit/test_project.py | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .venv/lib/python3.12/site-packages/test/unit/test_project.py (limited to '.venv/lib/python3.12/site-packages/test/unit/test_project.py') 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() -- cgit v1.2.3