diff options
author | Paul Joseph Davis <davisp@apache.org> | 2009-06-25 04:57:42 +0000 |
---|---|---|
committer | Paul Joseph Davis <davisp@apache.org> | 2009-06-25 04:57:42 +0000 |
commit | a85d922d4078b5a54c391759e79e9da6b0fb316f (patch) | |
tree | 2d77f5451c7d89ec01dd71f0dc628a8358887689 /test/etap/080-config-get-set.t | |
parent | 25d76bffa027c3d736791949c3b1355709b9531c (diff) |
Cleaning out tabs from source code. Purely whitespace diff.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@788258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/etap/080-config-get-set.t')
-rwxr-xr-x | test/etap/080-config-get-set.t | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/test/etap/080-config-get-set.t b/test/etap/080-config-get-set.t index 4824b2aa..8cd6a9e6 100755 --- a/test/etap/080-config-get-set.t +++ b/test/etap/080-config-get-set.t @@ -27,38 +27,38 @@ test() -> etap:fun_is( fun(List) -> length(List) > 0 end, couch_config:all(), - "Data was loaded from the INI file." - ), + "Data was loaded from the INI file." + ), etap:fun_is( fun(List) -> length(List) > 0 end, couch_config:get("daemons"), - "There are settings in the [daemons] section of the INI file." - ), - + "There are settings in the [daemons] section of the INI file." + ), + etap:is( couch_config:get("httpd_design_handlers", "_view"), - "{couch_httpd_view, handle_view_req}", - "The {httpd_design_handlers, view} is the expected default." - ), + "{couch_httpd_view, handle_view_req}", + "The {httpd_design_handlers, view} is the expected default." + ), etap:is( couch_config:get("httpd", "foo", "bar"), "bar", - "Returns the default when key doesn't exist in config." - ), - - etap:is( - couch_config:get("httpd", "foo"), - undefined, - "The default default is the atom 'undefined'." - ), + "Returns the default when key doesn't exist in config." + ), + + etap:is( + couch_config:get("httpd", "foo"), + undefined, + "The default default is the atom 'undefined'." + ), etap:is( couch_config:get("httpd", "port", "bar"), "5984", - "Only returns the default when the config setting does not exist." - ), + "Only returns the default when the config setting does not exist." + ), % Check that setting values works. @@ -69,8 +69,8 @@ test() -> etap:is( couch_config:get("log", "level"), "severe", - "Non persisted changes take effect." - ), + "Non persisted changes take effect." + ), etap:is( couch_config:get("new_section", "bizzle"), |