diff --git a/test/fixtures/registrars.yml b/test/fixtures/registrars.yml new file mode 100644 index 000000000..f4ad94604 --- /dev/null +++ b/test/fixtures/registrars.yml @@ -0,0 +1,10 @@ +DEFAULTS: &DEFAULTS + name: Acme Ltd + reg_no: 1234 + country_code: US + email: acme@example.com + code: 1234 + accounting_customer_code: C1 + +valid: + <<: *DEFAULTS diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml new file mode 100644 index 000000000..860f06c13 --- /dev/null +++ b/test/fixtures/users.yml @@ -0,0 +1,16 @@ +DEFAULTS: &DEFAULTS + username: test + +api: + <<: *DEFAULTS + type: ApiUser + registrar: valid + roles: + - super + +admin: + <<: *DEFAULTS + type: AdminUser + country_code: US + roles: + - admin