amber-spec
Helpers to Crystal's spec
forked from spec-kemal.
Installation
Add it to your shard.yml
.
name: your-app
version: 0.1.0
dependencies:
amber:
github: amber-crystal/amber
amber-spec:
github: amber-crystal/amber-spec
Usage
Just require it before your files in your spec/spec_helper.cr
require "amber-spec"
# spec/controllers/your-controller_spec.cr
describe "Your::Controller" do
# You can use get,post,put,patch,delete to call the corresponding route.
it "renders /" do
get "/"
response.body.should eq "Hello World!"
end
end
This is a fork from spec-kemal and modified to work with amber.
Contributing
- Fork it ( https://github.com/amber-crystal/amber_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