diff options
author | Peter Andersson <[email protected]> | 2010-02-17 14:58:33 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-17 16:02:44 +0100 |
commit | b1427ecd6db49ceb3f90c420841dffb206db63a6 (patch) | |
tree | d70c0563f9e4f393e260c7a07ab0b42f40d85fde /lib/tools/emacs/erlang-skels-old.el | |
parent | 55d3477a902cb0159e73f25beb33b45246db10dc (diff) | |
download | otp-b1427ecd6db49ceb3f90c420841dffb206db63a6.tar.gz otp-b1427ecd6db49ceb3f90c420841dffb206db63a6.tar.bz2 otp-b1427ecd6db49ceb3f90c420841dffb206db63a6.zip |
emacs: Update test suite skeletons
Diffstat (limited to 'lib/tools/emacs/erlang-skels-old.el')
-rw-r--r-- | lib/tools/emacs/erlang-skels-old.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/tools/emacs/erlang-skels-old.el b/lib/tools/emacs/erlang-skels-old.el index 662590a1f3..b88d7bcc4b 100644 --- a/lib/tools/emacs/erlang-skels-old.el +++ b/lib/tools/emacs/erlang-skels-old.el @@ -433,7 +433,7 @@ Please see the function `tempo-define-template'.") "%% {ok, State, Timeout} |" n "%% ignore |" n "%% {stop, Reason}" n - "%% Description: Initiates the server" n + "%% Description: Initializes the server" n (erlang-skel-separator 2) "init([]) ->" n> "{ok, #state{}}." n @@ -784,7 +784,7 @@ Please see the function `tempo-define-template'.") "%% {ok, State, Timeout} |" n "%% ignore |" n "%% {stop, Reason}" n - "%% Description: Initiates the server" n + "%% Description: Initializes the server" n (erlang-skel-separator 2) "init([]) ->" n> "{ok, #state{}}." n @@ -815,7 +815,7 @@ Please see the function `tempo-define-template'.") "%% Note: This directive should only be used in test suites." n "-compile(export_all)." n n - "-include(\"test_server.hrl\")." n n + "-include_lib(\"test_server/include/test_server.hrl\")." n n (erlang-skel-separator 2) "%% TEST SERVER CALLBACK FUNCTIONS" n @@ -954,7 +954,7 @@ Please see the function `tempo-define-template'.") "%% Note: This directive should only be used in test suites." n "-compile(export_all)." n n - "-include(\"ct.hrl\")." n n + "-include_lib(\"common_test/include/ct.hrl\")." n n (erlang-skel-separator 2) "%% COMMON TEST CALLBACK FUNCTIONS" n @@ -1156,7 +1156,7 @@ Please see the function `tempo-define-template'.") '((erlang-skel-include erlang-skel-large-header) "-compile(export_all)." n n - "-include(\"ct.hrl\")." n n + "-include_lib(\"common_test/include/ct.hrl\")." n n (erlang-skel-separator 2) "%% Function: suite() -> Info" n |