rambo
rambo copied to clipboard
RAML in, RSpec out
## Summary In addition to JSON Schema, RAML provides the option of native RAML schemas and examples. Rambo should be able to generate examples - and Rambo-generated tests should be...
## Summary When I generate tests for a Rails 5 app using `rake rambo`, a deprecation warning appears: ``` DEPRECATION WARNING: ActionController::TestCase HTTP request methods will accept only keyword arguments...
## Summary Since most APIs persist data, Rambo needs some way to ensure data exist in the database when tests are run. For version 0.8, we will be adding FactoryGirl...
## Summary Rambo needs to be extended to support URI parameters - e.g. `:id` in `/authors/:id`. This feature is central to REST API design. This is very closely coupled to...
## Summary For version 0.8, we are going to add support for nested routes (not nested resources, yet). This is closely tied to the support we will be adding for...
## Summary Since the `raml-rb` gem does not support the entire RAML specification, we need to decide whether this is still the best RAML parsing option for Rambo. After some...
## Summary Although Rambo is an opinionated tool and its opinion is that REST > SOAP, the reality is that sometimes our users will simply need to handle XML -...
JSON Test Data 0.7 is breaking the tests because it generates objects with random values that don't play well with fixtures. Have to figure out a new way to test...
Although Rambo currently uses Cucumber and RSpec to test that the expected RSpec code is generated, we currently do not have a way to validate that that code is actually...