##// END OF EJS Templates
Skip writefile tests for quotes in filenames on Windows as quotes...
Partha P. Mukherjee -
Show More
@@ -769,6 +769,7 b' def test_file():'
769 nt.assert_in('line1\n', s)
769 nt.assert_in('line1\n', s)
770 nt.assert_in('line2', s)
770 nt.assert_in('line2', s)
771
771
772 @dec.skip_win32
772 def test_file_single_quote():
773 def test_file_single_quote():
773 """Basic %%writefile with embedded single quotes"""
774 """Basic %%writefile with embedded single quotes"""
774 ip = get_ipython()
775 ip = get_ipython()
@@ -783,6 +784,7 b' def test_file_single_quote():'
783 nt.assert_in('line1\n', s)
784 nt.assert_in('line1\n', s)
784 nt.assert_in('line2', s)
785 nt.assert_in('line2', s)
785
786
787 @dec.skip_win32
786 def test_file_double_quote():
788 def test_file_double_quote():
787 """Basic %%writefile with embedded double quotes"""
789 """Basic %%writefile with embedded double quotes"""
788 ip = get_ipython()
790 ip = get_ipython()
General Comments 0
You need to be logged in to leave comments. Login now