"""Factory for the Currency model.""" import factory from users.models.user_info import Currency class CurrencyFactory(factory.Factory): """Factory for creating Currency instances for testing.""" class Meta: """Meta definition for the factory.""" model = Currency currency_id = 1 currency_iso_code = 'USD' currency_name = 'US Dollars'