-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Two new options for meck #77
Conversation
@@ -142,6 +142,12 @@ new(Mod) when is_list(Mod) -> lists:foreach(fun new/1, Mod), ok. | |||
%% This option allows you to disable that | |||
%% feature if it causes problems. | |||
%% </dd> | |||
%% <dt>`{spawn_opt,list()}'</dt><dd>Specify spawn options. Typically used to | |||
%% specify non-default, garbage collection | |||
%% options. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any way to make it more clear that it is Erlang process spawn options, and not Meck specific spawn options?
Nice stuff! I'll merge after fixes. |
Well .... how about? "Specify spawn options." => "Specify Erlang process spawn options." |
Sounds good. :-) |
Typically used to specify non-default, garbage collection options.
I pushed those 2 updates. |
Thanks! |
Two commits to help when using meck for performance-like testing.