rspec.info

rspec >= 3.1 brings a method and_wrap_original. It seems a bit complicated at first, but there are use cases...

When dealing with external data sources, you may have to deal with improperly encoded strings. While you should prefer deciding...

makandra dev

Webpack builds can take a long time, so we only want to compile when needed. This card shows what will...

The ActionDispatch module of Rails gives you the helper method flash to access the flash messages in a response.

We had the issue, that a VCR spec failed, after updating CarrierWave from version 0.11.0 to 1.3.2. In this version...

tl;dr: Upgrade the gem to at least 4.0.1 When you use rspec_rails in a version < 4 with Rails...

Headless Chrome is a way to run the Chrome browser without a visible window. Configuring Capybara Configure the Capybara driver...

tekin.co.uk

Git diffs show the surrounding contexts for diff hunks. It does so by applying regular expressions to find the beginning...

"Open-source software (OSS) is great. Anyone can use virtually any open-source code in their projects." Well, it depends...

makandra dev

# Basic HTML example # Javascript API (notable methods and properties) video = document.querySelector('video') video.play() video.pause() video.load() // Reset to the beginning and...

In a web application you sometimes have tasks that can not be processed during a request but need to go...

betterspecs.org

betterspecs.org is a documentation on how to write better RSpec tests. Note that there are also other approaches like The...

makandra dev

With Rspec you can mock objects or functions, for example like this: expect(my_object).to receive(:my_function).and...

This seems to be obvious, but you can expect Rake tasks to be called in RSpec. it 'deletes all Users...

github.com

The linked GitHub repository is a bit like our "dev" cards deck, but groomed from a single person (Josh Branchaud...

Simplecov is a code coverage tool. This helps you to find out which parts of your application are not tested...

Debugging image color profiles is hard. You can't trust your eyes in this matter, as the image rendering depends...

When tests might not run with skipping RSpec in the RSpec.describe failing with the error undefined method 'describe' for main...

api.rubyonrails.org

ActiveSupport (since 4.1) includes test helpers to manipulate time, just like the Timecop gem: To freeze the current time, use...

Most of the time it is a tedious task to apply a code style guide to an existing code...

github.com

This repository is a community-curated list of flexbox issues and cross-browser workarounds for them. The goal is that...

You can share a state in Ruby with global variables. Even if you should avoid them whenever possible, for debugging...

Jasmine has long standing support for writing asynchronous specs. In days gone by we used the done callback to achieve...

The goal is to get Jasmine specs running in a Rails project using Webpacker, with the browser based test runner...