Ghost/ghost/admin/app/mirage/fixtures/roles.js
Kevin Ansfield 675a1221fa Add acceptance test for setup flow happy-path
refs #6039
- add `jquery-deparam` ember testing dependency for use in mirage config
- setup necessary mirage fixtures & endpoints for successful testing of setup flow's happy-path
- add happy-path acceptance test for setup flow
2015-11-15 11:51:19 +00:00

43 lines
1.1 KiB
JavaScript

export default [
{
id: 1,
uuid: 'b2576c4e-fa4e-41d4-8236-ced75f735222',
name: 'Administrator',
description: 'Administrators',
created_at: '2015-11-13T16:01:29.131Z',
created_by: 1,
updated_at: '2015-11-13T16:01:29.131Z',
updated_by: 1
},
{
id: 2,
uuid: '6ee03efb-322e-4f6e-9c91-bc228b5eec6b',
name: 'Editor',
description: 'Editors',
created_at: '2015-11-13T16:01:29.131Z',
created_by: 1,
updated_at: '2015-11-13T16:01:29.131Z',
updated_by: 1
},
{
id: 3,
uuid: 'de481b62-63f8-42c7-b5b9-6c5f5a877f53',
name: 'Author',
description: 'Authors',
created_at: '2015-11-13T16:01:29.131Z',
created_by: 1,
updated_at: '2015-11-13T16:01:29.131Z',
updated_by: 1
},
{
id: 4,
uuid: 'ac8cbaf6-e6be-4129-b0fb-ec9ddfa61056',
name: 'Owner',
description: 'Blog Owner',
created_at: '2015-11-13T16:01:29.132Z',
created_by: 1,
updated_at: '2015-11-13T16:01:29.132Z',
updated_by: 1
}
];