blob: 2a23542eea758d0459c6025c6608c5b1745af46c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require "../../../spec_helper"
describe Api::SignUps::Create do
it "creates user on sign up" do
UserToken.stub_token("fake-token") do
response = ApiClient.exec(Api::SignUps::Create, user: valid_params)
response.should send_json(200, token: "fake-token")
new_user = UserQuery.first
new_user.email.should eq(valid_params[:email])
end
end
it "returns error for invalid params" do
invalid_params = valid_params.merge(password_confirmation: "wrong")
response = ApiClient.exec(Api::SignUps::Create, user: invalid_params)
UserQuery.new.select_count.should eq(0)
response.should send_json(
400,
param: "password_confirmation",
details: "password_confirmation must match"
)
end
end
private def valid_params
{
email: "test@email.com",
password: "password",
password_confirmation: "password",
}
end
|