To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorrequest nested schema scaffolding
If your API endpoint has some dynamic segment - Lurker can handle it as well!
- Scenarios
-
- scaffold a json schema for a "repos/show" in a nested controller spec
-
- Given
-
a file named "spec/requests/repos_spec.rb" with:
describe Api::V1::ReposController, :lurker do let!(:user) do User.where(name: 'razum2um').first_or_create!.tap do |u| u.repos.first_or_create!(name: 'lurker') end end it "shows a user's repo" do get "/api/v1/users/#{user.id}/repos/#{user.repos.first.id}.json" expect(response).to be_success end end
- When
-
I run
bin/rspec spec/requests/repos_spec.rb
- Then
- the example should pass
- Then
- a file named "lurker/api/v1/users/__user_id/repos/__id-GET.json.yml" should exist
- Then
-
the file "lurker/api/v1/users/__user_id/repos/__id-GET.json.yml" should contain exactly:
--- description: repo prefix: repos management requestParameters: description: '' type: object additionalProperties: false required: [] properties: {} responseCodes: - status: 200 successful: true description: '' responseParameters: description: '' type: object additionalProperties: false required: [] properties: id: description: '' type: integer example: 1 name: description: '' type: string example: lurker user_id: description: '' type: integer example: 1 extensions: method: GET path_info: "/api/v1/users/1/repos/1.json" path_params: controller: api/v1/repos action: show user_id: '1' id: '1'
Last published about 2 years ago by razum2um.