2021-05-12 11:10:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe RegistrationsHelper do
|
2021-05-19 20:10:36 -04:00
|
|
|
describe '#signup_username_data_attributes' do
|
|
|
|
it 'has expected attributes' do
|
|
|
|
expect(helper.signup_username_data_attributes.keys).to include(:min_length, :min_length_message, :max_length, :max_length_message, :qa_selector)
|
|
|
|
end
|
|
|
|
end
|
2021-05-12 11:10:25 -04:00
|
|
|
end
|