airborne
airborne copied to clipboard
RSpec driven API testing framework
If I get a link that 302s via curb then I'm able to see the `Location:` header with the correct `302` status code. Airborne auto follows the redirect and the...
Hi everyone I tried to test my dummy grape app https://github.com/viy/ab with airborne and got this error Errno::ECONNREFUSED: Connection refused - connect(2) for nil port 80 ./spec/request/api/v1/share_pont_spec.rb:11:in `block (3 levels)...
Is there airborne'y way so sign requests with oAuth token? I found only way to do it directly with RestClient before exec proc: ``` access_token = MyModule.get_oauth[:token] RestClient.reset_before_execution_procs RestClient.add_before_execution_proc do...
Given the following JSON. How could you validate JSON types for the owner's name. This is an example from your documentation, but the Lamborghini's owner has been removed. ``` JSON...
I am trying to use airbone with rails. Airborne expect methods keep failing with `undefined method '[]' for nil:NilClass`. My test looks like this ``` require 'rails_helper' describe "MyTest", type:...