ctt/lib/ctt/test/test_report.py

68 lines
1.4 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# 2016 Darko Poljak (darko.poljak at gmail.com)
#
# This file is part of ctt.
#
# ctt is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# ctt is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ctt. If not, see <http://www.gnu.org/licenses/>.
#
#
import unittest
import ctt
import ctt.test
import ctt.tracker as tr
import os
import datetime
import shutil
# TODO implement tests
class ReportTestCase(ctt.test.CttTestCase):
def test_commandline(self):
pass
def test_print_report_time_entries(self):
pass
def print_reports(self):
pass
def test__init_date(self):
pass
def test__init_report_db(self):
pass
def test_header(self):
pass
def test_summary(self):
pass
def test_total_time(self):
pass
def test__get_report_entry(self):
pass
def test_report(self):
pass
if __name__ == '__main__':
unittest.main()