awips2/pythonPackages/nose/functional_tests/test_issue_649.py

19 lines
478 B
Python
Raw Permalink Normal View History

2017-04-21 18:33:55 -06:00
# -*- coding: utf-8 -*-
import os
import sys
import unittest
from nose.plugins.capture import Capture
from nose.plugins import PluginTester
support = os.path.join(os.path.dirname(__file__), 'support')
class TestIssue649(PluginTester, unittest.TestCase):
activate = ''
args = ['-v']
plugins = [Capture()]
suitepath = os.path.join(support, 'issue649')
def runTest(self):
print str(self.output)
assert 'UnicodeDecodeError' not in self.output