Ejemplo n.º 1
0
 def test_asset_contains(self):
     assets = items.assets(*self.TEST_APP)
     self.assertTrue(self.ITEM_IN_CATALOG in assets)
     self.assertFalse(self.ITEM_NOT_IN_CATALOG in assets)
     schema = items.schema(*self.TEST_APP)
     self.assertTrue(schema[self.ITEM_IN_CATALOG] in assets)
     self.assertFalse(schema[self.ITEM_NOT_IN_CATALOG] in assets)
Ejemplo n.º 2
0
 def test_asset_contains(self):
     assets = items.assets(*self.TEST_APP)
     self.assertTrue(self.ITEM_IN_CATALOG in assets)
     self.assertFalse(self.ITEM_NOT_IN_CATALOG in assets)
     schema = items.schema(*self.TEST_APP)
     self.assertTrue(schema[self.ITEM_IN_CATALOG] in assets)
     self.assertFalse(schema[self.ITEM_NOT_IN_CATALOG] in assets)
Ejemplo n.º 3
0
 def test_asset_item_has_no_tags(self):
     assets_without_tags = items.assets(*self.TEST_APP_NO_TAGS)
     asset_item_without_tags = assets_without_tags[self.ITEM_IN_NO_TAGS_CATALOG]
     self.assertEqual(len(asset_item_without_tags.tags), 0)
Ejemplo n.º 4
0
 def test_asset_item_has_tags(self):
     assets_with_tags = items.assets(*self.TEST_APP)
     asset_item_with_tags = assets_with_tags[self.ITEM_IN_CATALOG]
     self.assertGreater(len(asset_item_with_tags.tags), 0)
Ejemplo n.º 5
0
 def test_asset_has_no_tags(self):
     assets_without_tags = items.assets(*self.TEST_APP_NO_TAGS)
     self.assertEqual(len(assets_without_tags.tags), 0)
Ejemplo n.º 6
0
 def test_asset_has_tags(self):
     assets_with_tags = items.assets(*self.TEST_APP)
     self.assertGreater(len(assets_with_tags.tags), 0)
Ejemplo n.º 7
0
 def test_asset_item_has_no_tags(self):
     assets_without_tags = items.assets(*self.TEST_APP_NO_TAGS)
     asset_item_without_tags = assets_without_tags[
         self.ITEM_IN_NO_TAGS_CATALOG]
     self.assertEqual(len(asset_item_without_tags.tags), 0)
Ejemplo n.º 8
0
 def test_asset_item_has_tags(self):
     assets_with_tags = items.assets(*self.TEST_APP)
     asset_item_with_tags = assets_with_tags[self.ITEM_IN_CATALOG]
     self.assertGreater(len(asset_item_with_tags.tags), 0)
Ejemplo n.º 9
0
 def test_asset_has_no_tags(self):
     assets_without_tags = items.assets(*self.TEST_APP_NO_TAGS)
     self.assertEqual(len(assets_without_tags.tags), 0)
Ejemplo n.º 10
0
 def test_asset_has_tags(self):
     assets_with_tags = items.assets(*self.TEST_APP)
     self.assertGreater(len(assets_with_tags.tags), 0)