diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-02-28 11:51:16 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-02-28 15:23:07 +0100 |
commit | 76097ed108f7ac2ff8ecd69f3174bb086e0fe939 (patch) | |
tree | 4b641e2314dc7b1759d6794bd0bac43d8cc50af5 /xtesting/samples/fourth.py | |
parent | 0d96b05b0a8d21ce90fc7a7e1768a87fa0e3260f (diff) |
Publish Dockerfile and samples
Change-Id: Ie776fea631f04bb42d8ae80bc658318d8644d0e5
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'xtesting/samples/fourth.py')
-rw-r--r-- | xtesting/samples/fourth.py | 19 |
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') |