From f3d299bc7e00232074acebb2b32ba5d9c4b69d70 Mon Sep 17 00:00:00 2001 From: John Backus Date: Sat, 31 Oct 2015 21:59:06 -0700 Subject: [PATCH] Add limitation example for `'(eval)'` --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index e6fd6060..c571a594 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,14 @@ Mutant cannot emit mutations for... end ``` +* methods defined with eval: + + ```ruby + class Foo + class_eval('def bar; end') # cannot mutate + end + ``` + Mutation-Operators: -------------------