I\'m writing a Capybara test and using Rspec for the assertions. My test is failing because there is a CSS style being applied that is causing the text to be in all caps. How ca
how about using a regex to do this?
"ALL CAPS".should match(/#{Regexp.escape('All Caps')}/i)