##// END OF EJS Templates
Fernando Perez -
Show More
@@ -37,11 +37,12 b' from IPython.config.loader import ('
37 37
38 38
39 39 pyfile = """
40 a = 10
41 b = 20
42 Foo.Bar.value = 10
43 Foo.Bam.value = range(10)
44 D.C.value = 'hi there'
40 c = get_config()
41 c.a = 10
42 c.b = 20
43 c.Foo.Bar.value = 10
44 c.Foo.Bam.value = range(10)
45 c.D.C.value = 'hi there'
45 46 """
46 47
47 48 class TestPyFileCL(TestCase):
General Comments 0
You need to be logged in to leave comments. Login now