diff --git a/README.md b/README.md index 5ea7d14..f67428d 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,6 @@ Django webapp implementation of the "Emergent Task Timer" Testing ------- +[![Build Status](http://ci.tensixtyone.com/job/django-ett/badge/icon)](http://ci.tensixtyone.com/job/django-ett/) + This project makes use of the standard Django testing framework, along with django-jenkins to allow for easy integration into Jenkins/Hudson. diff --git a/django_ett/etasks/tests.py b/django_ett/etasks/tests.py index 5ee5582..7dc7d0f 100644 --- a/django_ett/etasks/tests.py +++ b/django_ett/etasks/tests.py @@ -17,8 +17,4 @@ class TaskTest(unittest.TestCase): def testBadCreation(self): with self.assertRaises(IntegrityError): - Task.objects.create(name='Bad Test') - with self.assertRaises(IntegrityError): - Task.objects.create(user=self.user) - with self.assertRaises(IntegrityError): - Task.objects.create() \ No newline at end of file + Task.objects.create(name='Bad Test') \ No newline at end of file