SerialSpec is designed provide some simple matchers and macros overlaying a simple rack/test
setup for testing json apis more effectively.
Basic Usage
require "spec_helper"
RSpec.describe "test" do
include SerialSpec
request_method "GET"
request_path "/"
it_expects(:content_encoding) { expect(status).to eq(200) }
it_expects(:content_type) { expect(status).to eq(200) }
end
Contributing
- Fork it ( https://github.com/blakechambers/serial-spec/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request