diff --git a/lib/shoulda/context/context.rb b/lib/shoulda/context/context.rb index c15b2ffc..090a238d 100644 --- a/lib/shoulda/context/context.rb +++ b/lib/shoulda/context/context.rb @@ -205,8 +205,8 @@ def test_name_prefix end end - def method_missing(method, *args, &blk) - test_unit_class.send(method, *args, &blk) + def method_missing(method, *args, **kwargs, &blk) + test_unit_class.send(method, *args, **kwargs, &blk) end end