Changeset 3002:c90142fc9280 for features
- Timestamp:
- 04/27/15 14:33:53 (10 years ago)
- Branch:
- default
- Location:
- features
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
features/plugins/antispam.feature
r2986 r3002 30 30 When I fill in "Add a word" with "MyWord" 31 31 And I press "Add" 32 Then I should see "MyWord" in the ".antispam " element32 Then I should see "MyWord" in the ".antispam .local" element 33 33 # try to add to other blog 34 34 When I switch to blog "My first blog" … … 47 47 When I fill in "Add a word" with "MyWord" 48 48 And I press "Add" 49 Then I should see "MyWord" in the ".antispam" element 49 Then I should see "MyWord" in the ".antispam .local" element 50 When I fill in "Add a word" with "Other word" 51 And I check "Global word (used for all blogs)" 52 And I press "Add" 53 Then I should see "Other word" in the ".antispam .global" element 50 54 # try to add to other blog 51 55 When I switch to blog "My first blog" … … 55 59 And I press "Add" 56 60 Then I should not see "This word exists" 57 And I should see "MyWord" in the ".antispam " element61 And I should see "MyWord" in the ".antispam .global" element -
features/sql/db_cleanup.sql
r2986 r3002 2 2 DELETE FROM dc_spamrule; 3 3 DELETE FROM dc_blog WHERE blog_id!='default'; 4 DELETE FROM dc_session; -
features/sql/db_init.sql
r2998 r3002 2 2 UPDATE dc_blog SET blog_name = 'My first blog' WHERE blog_id = 'default'; 3 3 UPDATE dc_setting SET setting_value = 'en',blog_id = 'default' WHERE setting_ns = 'system' AND setting_id = 'lang' AND blog_id = 'default'; 4 DELETE FROM dc_spamrule;
Note: See TracChangeset
for help on using the changeset viewer.