API testing in Ruby

I was after some advise as to whether anyone has had any experience writing API test automation scripts in Ruby? My previous experience is with C# and Java using Rest Assured and Rest Sharp libraries, but I was wondering if there was a similar library in Ruby which I could utilise?

Weโ€™re looking at writing the tests in Cucumber so a library which lends itself to being written easily in a gherkin style syntax would be great

1 Like

I once used https://github.com/brooklynDev/airborne at a former workplace to help test an API using Ruby. It doesnโ€™t use Gherkin syntax, but it is pretty readable if developers are going to be the ones maintaining the tests. Iโ€™m not sure if you can mix something like this with Cucumber for Ruby, though.

1 Like