Rspec:期望“super”被调用

Jel*_*Cat 7 rspec ruby-on-rails rspec3

我有一个很短的函数要测试:

def my_fn
  if some_condition
    super(@my_attr)
  end
end
Run Code Online (Sandbox Code Playgroud)

我希望我的规范能够验证是否super被调用,但我无法执行以下操作,因为:super似乎不是发送的消息:

    expect(subject).to receive(:super)
Run Code Online (Sandbox Code Playgroud)