File: basic_test.py

package info (click to toggle)
python-awscurl 0.36-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 260 kB
  • sloc: python: 967; sh: 90; makefile: 18
file content (10 lines) | stat: -rw-r--r-- 157 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
import unittest


def increment(x):
    return x + 1


class ShallPassTest(unittest.TestCase):
    def test(self):
        self.assertEqual(increment(3), 4)