Category

RSpec

New Gem Released: json-schema-rspec

We just released a gem which adds matchers to rspec for validating JSON strings against JSON schemas.

From the README:

JSON schemas are great for ensuring that changes in applications don’t break their integrations, without having to write complex integration tests or run many application environments...

Software Engineer

Greater Test Control With RSpec’s Tag Filters

We test a lot at Sharethrough. One of our projects had significant complex behavior that required numerous integration tests. These tests were inherently slow, so our test suite’s running time kept creeping up. They had value and they also had drawbacks.

Since we didn’t need to run them all the time...

Software Engineer