コード例 #1
0
    def test_get_choices(self, stripe_account_retrieve_mock, stripe_countryspec_retrieve_mock):
        # Simple test to test sure that at least one currency choice tuple is returned.

        currency_choices = get_supported_currency_choices(None)
        stripe_account_retrieve_mock.assert_called_once_with()
        stripe_countryspec_retrieve_mock.assert_called_once_with("US")
        self.assertGreaterEqual(len(currency_choices), 1, "Currency choices pull returned an empty list.")
        self.assertEqual(tuple, type(currency_choices[0]), "Currency choices are not tuples.")
        self.assertIn(("usd", "USD"), currency_choices, "USD not in currency choices.")
コード例 #2
0
ファイル: test_utils.py プロジェクト: vitosamson/dj-stripe
        def test_get_choices(self):
            """
            Simple test to test sure that at least one currency choice tuple is returned.
            USD should always be an option.
            """

            currency_choices = get_supported_currency_choices(settings.STRIPE_SECRET_KEY)
            self.assertGreaterEqual(len(currency_choices), 1, "Currency choices pull returned an empty list.")
            self.assertEqual(tuple, type(currency_choices[0]), "Currency choices are not tuples.")
            self.assertIn(("usd", "USD"), currency_choices, "USD not in currency choices.")
コード例 #3
0
ファイル: test_utils.py プロジェクト: wahuneke/dj-stripe
    def test_get_choices(self, stripe_account_retrieve_mock):
        """
        Simple test to test sure that at least one currency choice tuple is returned.
        USD should always be an option.
        """

        currency_choices = get_supported_currency_choices(api_key)
        stripe_account_retrieve_mock.assert_called_once_with()
        self.assertGreaterEqual(len(currency_choices), 1, "Currency choices pull returned an empty list.")
        self.assertEqual(tuple, type(currency_choices[0]), "Currency choices are not tuples.")
        self.assertIn(("usd", "USD"), currency_choices, "USD not in currency choices.")
コード例 #4
0
    def test_get_choices(self, stripe_account_retrieve_mock):
        """
        Simple test to test sure that at least one currency choice tuple is returned.
        USD should always be an option.
        """

        currency_choices = get_supported_currency_choices(api_key)
        stripe_account_retrieve_mock.assert_called_once_with()
        self.assertGreaterEqual(
            len(currency_choices), 1,
            "Currency choices pull returned an empty list.")
        self.assertEqual(tuple, type(currency_choices[0]),
                         "Currency choices are not tuples.")
        self.assertIn(("usd", "USD"), currency_choices,
                      "USD not in currency choices.")