Ignore:
Timestamp:
19 Feb 2020, 08:54:47 (5 years ago)
Author:
Henrik Bettermann
Message:

Do not allow course validation if no score has been entered.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_browser.py

    r15998 r16007  
    46844684        self.browser.getControl("Validate").click()
    46854685        self.assertTrue(
     4686            'No score has been entered.' in self.browser.contents)
     4687        self.browser.open(self.edit_scores_url)
     4688        self.browser.getControl(name="scores:list", index=0).value = '66'
     4689        self.browser.getControl("Update scores").click()
     4690        self.browser.getControl("Validate").click()
     4691        self.assertTrue(
    46864692            'You successfully validated the course results'
    46874693            in self.browser.contents)
Note: See TracChangeset for help on using the changeset viewer.