Skip to content

Instantly share code, notes, and snippets.

@mihyaeru21
Created May 26, 2016 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mihyaeru21/10e009799d25a90b6b2d163a74162b3e to your computer and use it in GitHub Desktop.
Save mihyaeru21/10e009799d25a90b6b2d163a74162b3e to your computer and use it in GitHub Desktop.
# ()付けない
cmp_deeply $hoge, {
id => is_integer,
name => is_string,
};
# ()付ける
cmp_deeply $hoge, {
id => is_integer(),
name => is_string(),
};
# 混ざってると気持ち悪い
cmp_deeply $hoge, {
id => is_integer,
name => is_string(),
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment