19
Mar

Pragmatic Usability Testing

If you are working on a project long enough you’ll probably think that every link, button, image is exactly where it should be.
If you coded it or designed it, then there’s something worse: You’ll have a hard time accepting that noone saw that big, bold sign up link.

Read more »

posted by gchatz No comments testing usability
27
Oct

Mock testing Paypal's IPN with Rails

In the previous article Using Paypal with Rails we showed how to implement a Paypal form using some of the Rails magic.
What’s equally important to the actual form, is, well …testing it.
Transactions are about customer’s money so you can’t rely on point and click testing.

Up until the redirection of the user to the Paypal gateway, testing can be done like usual, using the build-in mechanisms Rails provides.
What you can’t test in an automated way is Paypal’s IPN call back.
And you can’t test it because Paypal’s sandbox is unreliable. It can fire the call back after 2 seconds or 2 hours or 2 years.

Read more »

posted by gchatz No comments rails ruby testing