Skip to content
Snippets Groups Projects
Commit 667ffafe authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix spec

parent 4c92f156
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@ en:
about_this: About this instance
apps: Apps
business_email: 'Business e-mail:'
contact: Contact
closed_registrations: Registrations are currently closed on this instance.
contact: Contact
description_headline: What is %{domain}?
domain_count_after: other instances
domain_count_before: Connected to
......
......@@ -45,8 +45,9 @@ RSpec.describe User, type: :model do
expect(User.confirmed).to match_array([user_2])
end
end
end
let(:account) { Fabricate(:account, username: 'alice') }
let(:account) { Fabricate(:account, username: 'alice') }
let(:password) { 'abcd1234' }
describe 'blacklist' do
......@@ -55,7 +56,7 @@ RSpec.describe User, type: :model do
expect(user.valid?).to be_truthy
end
it 'should not allow a blacklisted user to be created' do
user = User.new(email: 'foo@mvrht.com', account: account, password: password)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment