當前位置: 首頁>>代碼示例>>Python>>正文


Python FixturesManager.uninstall_fixture方法代碼示例

本文整理匯總了Python中charlatan.FixturesManager.uninstall_fixture方法的典型用法代碼示例。如果您正苦於以下問題:Python FixturesManager.uninstall_fixture方法的具體用法?Python FixturesManager.uninstall_fixture怎麽用?Python FixturesManager.uninstall_fixture使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在charlatan.FixturesManager的用法示例。


在下文中一共展示了FixturesManager.uninstall_fixture方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: TestSqlalchemyFixtures

# 需要導入模塊: from charlatan import FixturesManager [as 別名]
# 或者: from charlatan.FixturesManager import uninstall_fixture [as 別名]
class TestSqlalchemyFixtures(testing.TestCase):

    def setUp(self):
        self.session = Session()
        self.manager = FixturesManager(db_session=self.session)
        self.manager.load("./charlatan/tests/data/relationships.yaml")

        Base.metadata.create_all(engine)

    def tearDown(self):
        Base.metadata.drop_all(engine)
        self.session.close()

    def test_double_install(self):
        """Verify that there's no double install."""
        self.manager.install_fixture("model")
        self.manager.install_fixture("color")

        self.assertEqual(self.session.query(Toaster).count(), 1)
        self.assertEqual(self.session.query(Color).count(), 1)

    def test_getting_from_database(self):
        """Verify that we can get from the database."""
        installed = Toaster(id=1)
        self.session.add(installed)
        self.session.commit()

        toaster = self.manager.install_fixture("from_database")
        self.assertEqual(toaster.id, 1)

    def test_installing_collection(self):
        """Verify that a collection of fixtures is in the database."""
        self.manager.install_fixture("model_list")

        self.assertEqual(self.session.query(Toaster).count(), 2)

    def test_inheritance_and_relationship(self):
        """Verify that inheritance works with relationships."""
        model, model_1 = self.manager.install_fixtures(('model', 'model_1'))

        self.assertTrue(isinstance(model.color, Color))
        self.assertTrue(isinstance(model_1.color, Color))

    def test_explicit_foreign_key(self):
        """Verify that we can get a db-computed foreign key explicitely."""
        model = self.manager.install_fixture('model_with_explicit_fk')
        assert model.color_id is not None

    def test_uninstall_deletes_fixtures(self):
        """Verify uninstalling a fixture drops it from the database."""
        self.manager.install_fixture("color")

        # sanity check
        self.assertEqual(self.session.query(Color).count(), 1)

        self.manager.uninstall_fixture("color")

        self.assertEqual(self.session.query(Color).count(), 0)
開發者ID:rtoussaint,項目名稱:charlatan,代碼行數:60,代碼來源:test_sqlalchemy.py

示例2: test_uninstall_fixture

# 需要導入模塊: from charlatan import FixturesManager [as 別名]
# 或者: from charlatan.FixturesManager import uninstall_fixture [as 別名]
    def test_uninstall_fixture(self):
        manager = FixturesManager()
        manager.load(
            './charlatan/tests/data/relationships_without_models.yaml')

        manager.install_fixture('simple_dict')
        manager.uninstall_fixture('simple_dict')

        # verify we are forgiving with list inputs
        manager.install_fixtures('simple_dict')
        manager.uninstall_fixtures('simple_dict')
開發者ID:rtoussaint,項目名稱:charlatan,代碼行數:13,代碼來源:test_fixtures_manager.py

示例3: test_uninstall_non_installed_fixture

# 需要導入模塊: from charlatan import FixturesManager [as 別名]
# 或者: from charlatan.FixturesManager import uninstall_fixture [as 別名]
    def test_uninstall_non_installed_fixture(self):
        """uninstall_fixture should return None.

        The method returns None since the fixture has not been previously
        installed.
        """

        fixtures_manager = FixturesManager()
        fixtures_manager.load(
            './charlatan/tests/data/relationships_without_models.yaml')

        fixture = fixtures_manager.uninstall_fixture('simple_dict')
        self.assertEqual(fixture, None)
開發者ID:joegilley,項目名稱:charlatan,代碼行數:15,代碼來源:test_fixtures_manager.py

示例4: test_uninstall_fixture

# 需要導入模塊: from charlatan import FixturesManager [as 別名]
# 或者: from charlatan.FixturesManager import uninstall_fixture [as 別名]
    def test_uninstall_fixture(self):
        """uninstall_fixture should return the fixture."""

        fixtures_manager = FixturesManager()
        fixtures_manager.load(
            './charlatan/tests/data/relationships_without_models.yaml')

        fixtures_manager.install_fixture('simple_dict')
        fixture = fixtures_manager.uninstall_fixture('simple_dict')
        self.assertEqual(fixture, {
            'field1': 'lolin',
            'field2': 2,
        })

        # verify we are forgiving with list inputs
        fixtures = fixtures_manager.install_fixtures('simple_dict')
        self.assertEqual(len(fixtures), 1)

        fixtures = fixtures_manager.uninstall_fixtures('simple_dict')
        self.assertEqual(len(fixtures), 1)
        self.assertEqual(fixtures[0], {
            'field1': 'lolin',
            'field2': 2,
        })
開發者ID:joegilley,項目名稱:charlatan,代碼行數:26,代碼來源:test_fixtures_manager.py

示例5: test_uninstall_non_installed_fixture

# 需要導入模塊: from charlatan import FixturesManager [as 別名]
# 或者: from charlatan.FixturesManager import uninstall_fixture [as 別名]
 def test_uninstall_non_installed_fixture(self):
     manager = FixturesManager()
     manager.load(
         './charlatan/tests/data/relationships_without_models.yaml')
     manager.uninstall_fixture('simple_dict')
開發者ID:rtoussaint,項目名稱:charlatan,代碼行數:7,代碼來源:test_fixtures_manager.py


注:本文中的charlatan.FixturesManager.uninstall_fixture方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。