accessCompanyReports.feature 741 B

1234567891011121314151617181920
  1. @administration
  2. Feature: Access to company reports as admin
  3. In order to analyse reports of time spent on the platform
  4. As an administrator
  5. I need to be able to access the company reports
  6. Scenario: See the company reports link on the admin page
  7. Given I am a platform administrator
  8. And I am on "/main/admin/index.php"
  9. Then I should see "Reports"
  10. Scenario: Access the company report
  11. Given I am a platform administrator
  12. And I am on "/main/mySpace/company_reports.php"
  13. Then I should not see "not authorized"
  14. Scenario: Access the resumed version of the company report
  15. Given I am a platform administrator
  16. And I am on "/main/admin/company_reports_resumed.php"
  17. Then I should not see "not authorized"