diff --git a/common/lib/xmodule/xmodule/tests/test_export.py b/common/lib/xmodule/xmodule/tests/test_export.py
index aeebc6da6b..d172409c18 100644
--- a/common/lib/xmodule/xmodule/tests/test_export.py
+++ b/common/lib/xmodule/xmodule/tests/test_export.py
@@ -41,7 +41,7 @@ def strip_filenames(descriptor):
class RoundTripTestCase(unittest.TestCase):
'''Check that our test courses roundtrip properly'''
def check_export_roundtrip(self, data_dir, course_dir):
-
+ # import ipdb; ipdb.set_trace()
root_dir = path(mkdtemp())
print "Copying test course to temp dir {0}".format(root_dir)
@@ -117,3 +117,8 @@ class RoundTripTestCase(unittest.TestCase):
def test_selfassessment_roundtrip(self):
#Test selfassessment xmodule to see if it exports correctly
self.check_export_roundtrip(DATA_DIR,"self_assessment")
+
+ def test_graphicslidertool_roundtrip(self):
+ #Test graphicslidertool xmodule to see if it exports correctly
+ # import ipdb; ipdb.set_trace()
+ self.check_export_roundtrip(DATA_DIR,"graphic_slider_tool")
diff --git a/common/test/data/graphic_slider_tool/README.md b/common/test/data/graphic_slider_tool/README.md
new file mode 100644
index 0000000000..ec4f121ad8
--- /dev/null
+++ b/common/test/data/graphic_slider_tool/README.md
@@ -0,0 +1,2 @@
+This is a very very simple course, useful for debugging graphical slider tool
+code.
diff --git a/common/test/data/graphic_slider_tool/course.xml b/common/test/data/graphic_slider_tool/course.xml
new file mode 120000
index 0000000000..49041310f6
--- /dev/null
+++ b/common/test/data/graphic_slider_tool/course.xml
@@ -0,0 +1 @@
+roots/2012_Fall.xml
\ No newline at end of file
diff --git a/common/test/data/graphic_slider_tool/course/2012_Fall.xml b/common/test/data/graphic_slider_tool/course/2012_Fall.xml
new file mode 100644
index 0000000000..a51e027c2e
--- /dev/null
+++ b/common/test/data/graphic_slider_tool/course/2012_Fall.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/common/test/data/graphic_slider_tool/gst/sample_gst.xml b/common/test/data/graphic_slider_tool/gst/sample_gst.xml
new file mode 100644
index 0000000000..21b6483efe
--- /dev/null
+++ b/common/test/data/graphic_slider_tool/gst/sample_gst.xml
@@ -0,0 +1,41 @@
+
+
+
+
Graphic slider tool: Dynamic range and implicit functions.
+
+
You can make x range (not ticks of x axis) of functions to depend on
+ parameter value. This can be useful when function domain depends
+ on parameter.
+
Also implicit functons like circle can be plotted as 2 separate
+ functions of same color.