##// END OF EJS Templates
test changes...
MinRK -
Show More
@@ -68,12 +68,12 b' class TestAnsi(TestsBase):'
68 def test_ansi2latex(self):
68 def test_ansi2latex(self):
69 """ansi2latex test"""
69 """ansi2latex test"""
70 correct_outputs = {
70 correct_outputs = {
71 '%s' % (TermColors.Red) : r'\red{}',
71 '%s' % (TermColors.Red) : r'{\color{red}}',
72 'hello%s' % TermColors.Blue: r'hello\blue{}',
72 'hello%s' % TermColors.Blue: r'hello{\color{blue}}',
73 'he%s%sllo' % (TermColors.Green, TermColors.Cyan) : r'he\green{}\cyan{llo}',
73 'he%s%sllo' % (TermColors.Green, TermColors.Cyan) : r'he{\color{green}}{\color{cyan}llo}',
74 '%shello' % TermColors.Yellow : r'\yellow{hello}',
74 '%shello' % TermColors.Yellow : r'{\color{yellow}hello}',
75 '{0}h{0}e{0}l{0}l{0}o{0}'.format(TermColors.White) : r'\white{h}\white{e}\white{l}\white{l}\white{o}\white{}',
75 '{0}h{0}e{0}l{0}l{0}o{0}'.format(TermColors.White) : r'{\color{white}h}{\color{white}e}{\color{white}l}{\color{white}l}{\color{white}o}{\color{white}}',
76 'hel%slo' % TermColors.Green : r'hel\green{lo}',
76 'hel%slo' % TermColors.Green : r'hel{\color{green}lo}',
77 'hello' : 'hello'}
77 'hello' : 'hello'}
78
78
79 for inval, outval in correct_outputs.items():
79 for inval, outval in correct_outputs.items():
@@ -1,6 +1,6 b''
1 {
1 {
2 "metadata": {
2 "metadata": {
3 "name": "notebook2"
3 "name": ""
4 },
4 },
5 "nbformat": 3,
5 "nbformat": 3,
6 "nbformat_minor": 0,
6 "nbformat_minor": 0,
@@ -171,12 +171,15 b''
171 "prompt_number": 14
171 "prompt_number": 14
172 },
172 },
173 {
173 {
174 "cell_type": "code",
174 "cell_type": "markdown",
175 "collapsed": false,
176 "input": [],
177 "language": "python",
178 "metadata": {},
175 "metadata": {},
179 "outputs": []
176 "source": [
177 "```python\n",
178 "def foo(bar=1):\n",
179 " \"\"\"docstring\"\"\"\n",
180 " raise Exception(\"message\")\n",
181 "```"
182 ]
180 }
183 }
181 ],
184 ],
182 "metadata": {}
185 "metadata": {}
General Comments 0
You need to be logged in to leave comments. Login now