diff --git a/tests/test_climat2.py b/tests/test_climat2.py
new file mode 100644
index 0000000000000000000000000000000000000000..a0bcafcfe2e114204101caad523a88f07b5f68e5
--- /dev/null
+++ b/tests/test_climat2.py
@@ -0,0 +1,10 @@
+import unittest
+import subprocess
+import os
+
+
+class TestHelp(unittest.TestCase):
+    def test_help(self):
+        proc = subprocess.Popen(['./main.py', '--help'], stdout=subprocess.PIPE)
+        stdout, _ = proc.communicate()
+        self.assertIn(b'usage: main.py [-h] [-c] [-l] [-s] [files [files ...]]', stdout)