Narasimha
Narasimha

Reputation:

Simple Captcha - How to test?

I am using Simple Captcha plugin for generating the captcha. Does anybody know how do I modify rails tests to handle this?

Upvotes: 0

Views: 643

Answers (1)

stef
stef

Reputation: 14268

Simple Captcha automatically returns that the captcha is valid if the RAILS_ENV is "test". From the source code:

def simple_captcha_valid?
  return true if RAILS_ENV == 'test'
...

Upvotes: 2

Related Questions