You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
418 B
18 lines
418 B
require "rails_helper"
|
|
|
|
|
|
RSpec.describe "帐户", type: :request do
|
|
|
|
|
|
it "成功登录" do
|
|
ecpost login_accounts_url, {login: 'guange', password: '123456'}
|
|
expect(JSON.parse(response.body)["login"]).to eq('guange')
|
|
end
|
|
|
|
it "登录失败" do
|
|
ecpost login_accounts_url, {login: 'guange', password: 'wrong password'}
|
|
expect(JSON.parse(response.body)["status"]).to eq(-1)
|
|
end
|
|
|
|
|
|
end |