Implement __future__ division support.
[OpenColorIO-Configs.git] / aces_1.0.0 / python / bin / tests_aces_config
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Tests the *ACES* configuration.
6 """
7
8 from __future__ import division
9
10 import os
11 import unittest
12 import sys
13
14 sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
15
16 from aces_ocio.tests.tests_aces_config import *
17
18 __author__ = 'ACES Developers'
19 __copyright__ = 'Copyright (C) 2014 - 2015 - ACES Developers'
20 __license__ = ''
21 __maintainer__ = 'ACES Developers'
22 __email__ = 'aces@oscars.org'
23 __status__ = 'Production'
24
25 if __name__ == '__main__':
26     unittest.main()