Update database schema, fix spec
This commit is contained in:
parent
558100c35e
commit
96c669ab4e
@ -84,13 +84,12 @@ ActiveRecord::Schema[7.0].define(version: 2023_05_23_120753) do
|
|||||||
t.datetime "confirmed_at", precision: nil
|
t.datetime "confirmed_at", precision: nil
|
||||||
t.datetime "confirmation_sent_at", precision: nil
|
t.datetime "confirmation_sent_at", precision: nil
|
||||||
t.string "unconfirmed_email"
|
t.string "unconfirmed_email"
|
||||||
t.text "ln_login_ciphertext"
|
|
||||||
t.text "ln_password_ciphertext"
|
t.text "ln_password_ciphertext"
|
||||||
t.string "ln_account"
|
t.string "ln_account"
|
||||||
|
t.string "nostr_pubkey"
|
||||||
t.datetime "remember_created_at"
|
t.datetime "remember_created_at"
|
||||||
t.string "remember_token"
|
t.string "remember_token"
|
||||||
t.text "preferences"
|
t.text "preferences"
|
||||||
t.string "nostr_pubkey"
|
|
||||||
t.index ["email"], name: "index_users_on_email", unique: true
|
t.index ["email"], name: "index_users_on_email", unique: true
|
||||||
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
||||||
end
|
end
|
||||||
|
@ -25,7 +25,7 @@ RSpec.describe CreateLndhubAccountJob, type: :job do
|
|||||||
|
|
||||||
context "with existing credentials stored" do
|
context "with existing credentials stored" do
|
||||||
before do
|
before do
|
||||||
user.ln_login = "foo"
|
user.ln_account = "foo"
|
||||||
user.ln_password = "bar"
|
user.ln_password = "bar"
|
||||||
user.save!
|
user.save!
|
||||||
end
|
end
|
||||||
@ -36,7 +36,7 @@ RSpec.describe CreateLndhubAccountJob, type: :job do
|
|||||||
expect(WebMock).to_not have_requested(:post, "http://localhost:3023/create")
|
expect(WebMock).to_not have_requested(:post, "http://localhost:3023/create")
|
||||||
|
|
||||||
user.reload
|
user.reload
|
||||||
expect(user.ln_login).to eq("foo")
|
expect(user.ln_account).to eq("foo")
|
||||||
expect(user.ln_password).to eq("bar")
|
expect(user.ln_password).to eq("bar")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user