diff options
Diffstat (limited to 'bitbake/lib')
| -rw-r--r-- | bitbake/lib/toaster/tests/browser/test_sample.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/tests/browser/test_sample.py b/bitbake/lib/toaster/tests/browser/test_sample.py index b0067c21cd..73973778e4 100644 --- a/bitbake/lib/toaster/tests/browser/test_sample.py +++ b/bitbake/lib/toaster/tests/browser/test_sample.py | |||
| @@ -27,3 +27,12 @@ class TestSample(SeleniumTestCase): | |||
| 27 | self.get(url) | 27 | self.get(url) |
| 28 | brand_link = self.find('.toaster-navbar-brand a.brand') | 28 | brand_link = self.find('.toaster-navbar-brand a.brand') |
| 29 | self.assertEqual(brand_link.text.strip(), 'Toaster') | 29 | self.assertEqual(brand_link.text.strip(), 'Toaster') |
| 30 | |||
| 31 | def test_no_builds_message(self): | ||
| 32 | """ Test that a message is shown when there are no builds """ | ||
| 33 | url = reverse('all-builds') | ||
| 34 | self.get(url) | ||
| 35 | div_msg = self.find('#empty-state-allbuildstable .alert-info') | ||
| 36 | |||
| 37 | msg = 'Sorry - no data found' | ||
| 38 | self.assertEqual(div_msg.text, msg) | ||
