diff --git a/tests/__main__.py b/tests/__main__.py
new file mode 100644
index 0000000..eeabd2c
--- /dev/null
+++ b/tests/__main__.py
@@ -0,0 +1,21 @@
+'''
+The main test module for the fronty package.
+Here we will call this module from the command line to run all the tests at once.
+
+Usage:
+ python -m tests
+
+'''
+
+import unittest
+
+
+def main():
+ '''Runs all the tests at once.'''
+ suite = unittest.TestLoader().discover('tests', pattern='test_*.py')
+ runner = unittest.TextTestRunner()
+ runner.run(suite)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/tests/test_elements.py b/tests/test_elements.py
new file mode 100644
index 0000000..78008ec
--- /dev/null
+++ b/tests/test_elements.py
@@ -0,0 +1,86 @@
+import unittest
+from fronty import html
+
+
+class TestElements(unittest.TestCase):
+ '''Test the BaseElement class.'''
+
+ def test_base_element(self):
+ '''
+ Test the BaseElement class.
+ This is the base class for all elements. It is used to create new elements.
+ '''
+ self.assertEqual(
+
+ # Test case
+ html.BaseElement(
+ 'tag',
+ )
+ .attr('name', 'value')
+ .id('id')
+ .class_('class1 class2 classNth')
+ .style(color='red', background='blue')
+ .render(),
+
+ # Expected result
+ '
This is a paragraph.