test: move shunit2 tests under standalone subdirectory
[oweals/uci.git] / test / tests.d / 030_set
diff --git a/test/tests.d/030_set b/test/tests.d/030_set
deleted file mode 100644 (file)
index db3c259..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-test_set_parsing()
-{
-       cp ${REF_DIR}/set_parsing.data ${CONFIG_DIR}/test
-
-       assertFailWithNoReturn "${UCI_Q} set test.=val"
-       assertFailWithNoReturn "${UCI_Q} set test.section.=val"
-       assertFailWithNoReturn "${UCI_Q} set test.section.opt.=val"
-       assertFailWithNoReturn "${UCI_Q} set test.section.opt.zflk=val"
-}
-
-test_set_named_section()
-{
-       touch ${CONFIG_DIR}/set
-       ${UCI} set set.section=named
-       assertSameFile ${REF_DIR}/set_named_section.result ${CHANGES_DIR}/set
-}
-
-test_set_nonexisting_option()
-{
-       cp ${REF_DIR}/set_nonexisting_option.data ${CONFIG_DIR}/set
-       ${UCI} set set.section.opt=val
-       assertSameFile ${REF_DIR}/set_nonexisting_option.result ${CHANGES_DIR}/set
-}
-
-test_set_nonexisting_option_multiline()
-{
-       cp ${REF_DIR}/set_nonexisting_option.data ${CONFIG_DIR}/set
-       ${UCI} set set.section.opt="Hello,\'
-World\""
-       assertSameFile ${REF_DIR}/set_nonexisting_option_multiline.result ${CHANGES_DIR}/set
-}
-
-test_set_existing_option()
-{
-       cp ${REF_DIR}/set_existing_option.data ${CONFIG_DIR}/set
-       ${UCI} set set.section.opt=val
-       assertSameFile ${REF_DIR}/set_existing_option.result ${CHANGES_DIR}/set
-}
-
-test_set_existing_option_multiline()
-{
-       cp ${REF_DIR}/set_existing_option.data ${CONFIG_DIR}/set
-       ${UCI} set set.section.opt="Hello,\'
-World\""
-       assertSameFile ${REF_DIR}/set_existing_option_multiline.result ${CHANGES_DIR}/set
-}