==================
allow single attempts
==================

NumberOfPasswordPrompts 1

---

(client_config
  (number_of_password_prompts
    (number_of_password_prompts_value)))

==================
allow multiple attempts
==================

NumberOfPasswordPrompts 3

---

(client_config
  (number_of_password_prompts
    (number_of_password_prompts_value)))

==================
use irregular casing
==================

NumberOfPasswORDPrompts 5

---

(client_config
  (number_of_password_prompts
    (number_of_password_prompts_value)))

==================
can use equals sign
==================

NumberOfPasswordPrompts=7

---

(client_config
  (number_of_password_prompts
    (number_of_password_prompts_value)))

==================
can use equals sign with whitespace
==================

NumberOfPasswordPrompts = 9

---

(client_config
  (number_of_password_prompts
    (number_of_password_prompts_value)))

==================
can be specified after host
==================

Host example.com
  NumberOfPasswordPrompts 2

---

(client_config
  (host
    (host_value))
  (number_of_password_prompts
    (number_of_password_prompts_value)))

==================
detect invalid values
==================

NumberOfPasswordPrompts -1

---

(client_config
  (ERROR
    (UNEXPECTED '-')))
