1 |
efrain |
1 |
@tool @tool_task
|
|
|
2 |
Feature: See warning message if cron is disabled
|
|
|
3 |
In order to manage scheduled tasks
|
|
|
4 |
As a Moodle Administrator
|
|
|
5 |
I need to be able to view a warning message if cron is disabled
|
|
|
6 |
|
|
|
7 |
Background:
|
|
|
8 |
Given I log in as "admin"
|
|
|
9 |
|
|
|
10 |
Scenario: If cron is disabled, I should see the message
|
|
|
11 |
When the following config values are set as admin:
|
|
|
12 |
| cron_enabled | 0 |
|
|
|
13 |
And I navigate to "Server > Tasks > Scheduled tasks" in site administration
|
|
|
14 |
Then I should see "Cron is disabled"
|
|
|
15 |
|
|
|
16 |
Scenario: If cron is enabled, I should not see the message
|
|
|
17 |
When the following config values are set as admin:
|
|
|
18 |
| cron_enabled | 1 |
|
|
|
19 |
And I navigate to "Server > Tasks > Scheduled tasks" in site administration
|
|
|
20 |
Then I should not see "Cron is disabled"
|