From 4575c7ea47680e7f589477c917a73353d6faef73 Mon Sep 17 00:00:00 2001 From: Markus Krogh Date: Thu, 10 Mar 2016 11:53:42 +0000 Subject: Manager mail + ceo mail --- test/templates/test_employee_status_template.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/templates/test_employee_status_template.py (limited to 'test/templates/test_employee_status_template.py') diff --git a/test/templates/test_employee_status_template.py b/test/templates/test_employee_status_template.py new file mode 100644 index 0000000..0d37d3e --- /dev/null +++ b/test/templates/test_employee_status_template.py @@ -0,0 +1,25 @@ +from maconomy import EmployeeStatusTemplate, Employee, Timesheet +import unittest + +class EmployeeStatusTemplateTest(unittest.TestCase): + + def setUp(self): + self.template = EmployeeStatusTemplate() + self.employee = Employee.from_result(("MK", "Markus Krogh", "markus@nordu.net")) + + def test_substitute(self): + timesheet = Timesheet("11", 0, 0, self.employee, "JK") + result = self.template.build(timesheet) + self.assertIn("Markus Krogh (MK)", result) + self.assertIn("not been submitted", result) + self.assertIn("not been approved", result) + + def test_submitted(self): + timesheet = Timesheet("11", submitted=1, approved=0, employee=self.employee, approver="JK") + result = self.template.build(timesheet) + self.assertIn("has been submitted", result) + + def test_approved(self): + timesheet = Timesheet("11", submitted=1, approved=1, employee=self.employee, approver="JK") + result = self.template.build(timesheet) + self.assertIn("has been approved", result) -- cgit v1.1