Skip to content
Snippets Groups Projects
Commit 5100aea9 authored by Giovanne Marcelo's avatar Giovanne Marcelo
Browse files

add create language test

parent 86952972
No related branches found
No related tags found
No related merge requests found
......@@ -31,4 +31,26 @@ resource 'Languages' do
end
end
post '/v1/languages' do
include_context "authenticate_user"
parameter :name, 'The name of the language', scope: :language
parameter :code, 'The code of the language', scope: :language
let(:name) { Faker::Lorem::word }
let(:code) { Faker::Address.country_code }
let(:raw_post) { params.to_json }
example 'Creating a language' do
do_request
expect(status).to eq(201)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment