aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/samples/fourth.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/samples/fourth.py')
-rw-r--r--xtesting/samples/fourth.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/xtesting/samples/fourth.py b/xtesting/samples/fourth.py
new file mode 100644
index 00000000..be104fda
--- /dev/null
+++ b/xtesting/samples/fourth.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python
+
+# Copyright (c) 2016 Orange and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+
+# pylint: disable=missing-docstring
+
+import unittest
+
+
+class TestStringMethods(unittest.TestCase):
+
+ def test_upper(self):
+ self.assertEqual('Hello World'.upper(),
+ 'HELLO WORLD')