# encoding: utf-8
"""Tests for IPython.utils.capture"""
# -----------------------------------------------------------------------------
# Copyright (C) 2013 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Imports
# -----------------------------------------------------------------------------
import sys
import pytest
from IPython.utils import capture
# -----------------------------------------------------------------------------
# Globals
# -----------------------------------------------------------------------------
_mime_map = dict(
_repr_png_="image/png",
_repr_jpeg_="image/jpeg",
_repr_svg_="image/svg+xml",
_repr_html_="text/html",
_repr_json_="application/json",
_repr_javascript_="application/javascript",
)
basic_data = {
"image/png": b"binarydata",
"text/html": "bold",
}
basic_metadata = {
"image/png": {
"width": 10,
"height": 20,
},
}
full_data = {
"image/png": b"binarydata",
"image/jpeg": b"binarydata",
"image/svg+xml": "