Module: UserMock
- Defined in:
- lib/quidax/mocks/user_mock.rb
Constant Summary collapse
- ACCOUNT =
{ id: "QSKDJLK", sn: "2", email: "[email protected]", reference: "", first_name: "Aremu", last_name: "Smog", display_name: "null", created_at: "", updated_at: "" }.freeze
- ALL_SUBACCOUNTS =
[ { id: "QSKDJLK", sn: "2", email: "[email protected]", reference: "ajlkskl", first_name: "Aremu", last_name: "Smog", display_name: "null", created_at: "", updated_at: "" }, { id: "QS3DJLK", sn: "4", email: "[email protected]", reference: "sjld", first_name: "Aremu", last_name: "Smog", display_name: "null", created_at: "", updated_at: "" } ].freeze
- NEW_USER =
rubocop:disable Style/MutableConstant
{ # rubocop:disable Style/MutableConstant email: "[email protected]", first_name: "Aremu", last_name: "Smog", phone_number: "09012345678" }
- UPDATE_INFO =
{ first_name: "Daddy" }.freeze
- UPDATED_ACCOUNT =
{ id: "QSKDJLK", sn: "2", email: "[email protected]", reference: "", first_name: "Daddy", last_name: "Smog", display_name: "null", created_at: "", updated_at: "" }.freeze