Esempio n. 1
0
    def test_sample_unicode(self):
        '''This tests that the unicode representation of an :class:`~experiments.models.Sample` is set as its description.'''

        test_sample = Sample(description="Test Sample",
                             type="tissue",
                             species="mouse")
        test_sample.save()
        self.assertEqual(test_sample.__unicode__(), "Test Sample")
 def test_sample_unicode(self):
     '''This tests that the unicode representation of an :class:`~experiments.models.Sample` is set as its description.'''               
     
     test_sample = Sample(description = "Test Sample", type="tissue", species="mouse")
     test_sample.save()
     self.assertEqual(test_sample.__unicode__(), "Test Sample")