Skip to content

Commit

Permalink
Vinicius Garcia e venancio mota
Browse files Browse the repository at this point in the history
  • Loading branch information
dojorio committed Mar 4, 2020
1 parent 9692a52 commit d65ef1c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions 2020/20200304 - miojo - python/dojo.log
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Qua Mar 4 20:06:49 BRT 2020 - Vinicius Garcia e venancio mota
5 changes: 5 additions & 0 deletions 2020/20200304 - miojo - python/problem.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

def miojo(temp_1, temp_2):
return 3
18 changes: 18 additions & 0 deletions 2020/20200304 - miojo - python/test_problem.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import unittest
from problem import *


class TestProblem(unittest.TestCase):
def test_1_1(self):
self.assertEqual(miojo(1,1), 3)

def test_1_2(self):
self.assertEqual(miojo(2,5), 5)


if __name__ == "__main__":
unittest.main()

0 comments on commit d65ef1c

Please sign in to comment.