summaryrefslogtreecommitdiff
path: root/test/xls/test.py
blob: 5437da5dbf134c03d30a0befbac0736e22c07ccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
# -*- tab-width: 4; indent-tabs-mode: nil -*-
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#

import sys
sys.path.append(sys.path[0]+"/../..")
xls_dumper = __import__('xls-dump')
import unittest
import os

class Test(unittest.TestCase):

    def test_foo (self):
        self.assertEqual(1+1, 2)

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

# vim:set filetype=python shiftwidth=4 softtabstop=4 expandtab: