aboutsummaryrefslogtreecommitdiff
path: root/python/test_support/userlibrary.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test_support/userlibrary.py')
-rwxr-xr-xpython/test_support/userlibrary.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/python/test_support/userlibrary.py b/python/test_support/userlibrary.py
new file mode 100755
index 0000000000..5bb6f5009f
--- /dev/null
+++ b/python/test_support/userlibrary.py
@@ -0,0 +1,7 @@
+"""
+Used to test shipping of code depenencies with SparkContext.addPyFile().
+"""
+
+class UserClass(object):
+ def hello(self):
+ return "Hello World!"