source: python/trunk/Lib/test/test_future5.py

Last change on this file was 391, checked in by dmik, 11 years ago

python: Merge vendor 2.7.6 to trunk.

  • Property svn:eol-style set to native
File size: 543 bytes
Line 
1# Check that multiple features can be enabled.
2from __future__ import unicode_literals, print_function
3
4import sys
5import unittest
6from . import test_support
7
8
9class TestMultipleFeatures(unittest.TestCase):
10
11 def test_unicode_literals(self):
12 self.assertIsInstance("", unicode)
13
14 def test_print_function(self):
15 with test_support.captured_output("stderr") as s:
16 print("foo", file=sys.stderr)
17 self.assertEqual(s.getvalue(), "foo\n")
18
19
20def test_main():
21 test_support.run_unittest(TestMultipleFeatures)
Note: See TracBrowser for help on using the repository browser.