aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/resources
diff options
context:
space:
mode:
authorMatei Zaharia <matei@databricks.com>2013-12-29 18:44:06 -0500
committerMatei Zaharia <matei@databricks.com>2013-12-29 18:44:06 -0500
commit11540b798d622f3883cb40b20cc30ea7d894790a (patch)
tree5edc855c48d7e6e21340ae4a3942eace5c0992c4 /core/src/test/resources
parent1ee7f5aee451eb5686f1c5ef251d1ebdddb0e847 (diff)
downloadspark-11540b798d622f3883cb40b20cc30ea7d894790a.tar.gz
spark-11540b798d622f3883cb40b20cc30ea7d894790a.tar.bz2
spark-11540b798d622f3883cb40b20cc30ea7d894790a.zip
Added tests for SparkConf and fixed a bug
Typesafe Config caches system properties the first time it's invoked by default, ignoring later changes unless you do something special
Diffstat (limited to 'core/src/test/resources')
-rw-r--r--core/src/test/resources/spark.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/src/test/resources/spark.conf b/core/src/test/resources/spark.conf
new file mode 100644
index 0000000000..6c99bdcb7a
--- /dev/null
+++ b/core/src/test/resources/spark.conf
@@ -0,0 +1,6 @@
+spark.test.intTestProperty = 1
+
+spark.test {
+ stringTestProperty = "hi"
+ listTestProperty = ["a", "b"]
+}