rspec_api_documentation
rspec_api_documentation copied to clipboard
Can't name parameter "pending"
Whenever I declare a parameter named pending, (eg: parameter :pending, type: :boolean), I'm getting the following error:
Expected pending 'No reason given' to fail. No error was raised
pending is a reserved keyword in RSpec (it marks the spec as expected to fail, and will fail the whole test suite if that spec passes). I have the feeling that when you mention pending, somewhere in your spec, it calls RSpec's method instead of retrieving the parameter you defined. I think it would be helpful to see a complete spec to help you.
Could you please show us the spec that fails (or at least a spec that contains enough to fail the way you describe)?