コード例 #1
0
ファイル: test_factory.py プロジェクト: ramses-tech/ra
 def test_factory_params(self, examples, an_example):
     examples.make_factory("test", an_example)
     factory = examples.get_factory("test")
     obj = factory(c=3)
     assert obj["c"] == 3
コード例 #2
0
ファイル: test_factory.py プロジェクト: ramses-tech/ra
 def test_make_and_get_factory(self, examples, an_example):
     examples.make_factory("test", an_example)
     factory = examples.get_factory("test")
     assert factory() == an_example