feat: add create issue API

This commit is contained in:
Muhsin Keloth
2024-05-09 12:23:14 +05:30
parent 0268d544d1
commit 1ddc05dadb
6 changed files with 63 additions and 2 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ describe Linear do
it 'raises an exception' do
response = linear_client.teams
expect(response).to eq({ :error => 'Server Error: the server responded with status 422' })
expect(response).to eq({ :error => 'Error: the server responded with status 422' })
end
end
end
@@ -76,7 +76,7 @@ describe Linear do
it 'raises an exception' do
response = linear_client.team_entites(team_id)
expect(response).to eq({ :error => 'Server Error: the server responded with status 422' })
expect(response).to eq({ :error => 'Error: the server responded with status 422' })
end
end
end