If you need Google Chrome to run in English, and your system locale is a non-English one, you have...
My RubyMine (and it seems like many other Java GUI applications) crashes the Compiz window decorator almost every time on...
Consider the following: describe '#something' do context 'with lots of required arguments' do it 'should work' do subject.something(:foo => 'foo...
If you encounter above mentioned failiure message after installing the ruby-debug gem then you have to explicitly require linecache...
When rendering a number, you want to pretty up the string coming from #to_s: Render 0.0 as 0
Because your examples should not change global state, you should not need to care about the order in which RSpec...
I encountered a bug in RSpec 1.x where stubbed class methods ("static methods") would not be unstubbed before the...
I pushed a new version of the Cucumber Factory gem. This new release lets you refer to a previously created...
geordi, our collection of awesome shell scripts, has been extended by three scripts to help you call RSpec or Cucumber...
When using the resource_controller gem you often hook onto events like this: update.before do do_something end
In order to request a SSL certificate from any dealer, you usually need a CSR certificate. As both the CSR...
XPath matchers can be combined with CSS-selector matchers. This is really useful if not, for example, the content of...
When your cucumber features grow massively over time, the test execution can take a lot of time.
Wrapping a string in this class gives you a prettier way to test for equality.
This is an awful way to test whether a number is shown on the screen: Then I should see "5...
Capybara allows you to select DOM elements, e.g. by using field, find_field(...) or field_labeled(...): role_select = field_labeled...
These steps are now part of Spreewald. Here are some useful examples how to use the attached Cucumber Timecop steps...
Sometimes PDF cucumber tests fail at the first test run and succeed at the second run. You can fix this...
Run rspec-and-cucumber from any project directory to run both RSpec and Cucumber. If available, rspec_spinner or cucumber...
When you want to quickly boot from a drive or image in a virtual machine you do not need to...
You can use CSS attribute selectors in your step definitions like this: Then /^the page should have a meta description...
A capybara driver that uses WebKit via QtWebKit.
ActiveRecord gives you the :include option to load records and their associations in a fixed number of queries. This is...
The Basic Authentication header encodes username and password. Effectively, it's just Base64 plus a "Basic" prefix.