Sha256: 834236a2b053e48f120274d4fe8c50191341806764b0a51b8ce329a11b3edf1a
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
# SerialSpec SerialSpec is designed provide some simple matchers and macros overlaying a simple `rack/test` setup for testing json apis more effectively. There are a few good requirements to get you going: * Rspec 3.x. This gem uses (or will use) several parts of rspecs syntax. * Json api * ActiveModelSerializers * Single request testing pattern test architecture. ## Usage see [examples](https://github.com/blakechambers/serial-spec/blob/master/spec/serial_spec_spec.rb). ## Testing architecture SerialSpec is assuming that you are: 1. setting up preconditions 2. executing 1 request 3. inspecting the response If you need more requests you should be using mocks and stubs. ### "But I need more than one request?" SerialSpec, unlike rails' out of the box request testing system is closer to a controller test, than rails' request test, which is more kin to an integration test. Some people recommend using actual requests for performing things like login, auth vs mocking. However, this library doesn't subscribe to that pattern. If you aren't ok with that, you should look elsewhere. ## Contributing 1. Fork it ( https://github.com/blakechambers/serial-spec/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
serial-spec-0.1.0 | README.md |