コード例 #1
0
ファイル: tests.py プロジェクト: amrod/CodingChallenge
    def test_get_next_to_arrive_ampersand(self, mock_requests):
        """Verify ampersand is handled correctly.
        """

        r = services.get_next_to_arrive(self.a, 'Airport Terminals E & F')
        params = {'req1': self.a, 'req2': 'Airport Terminals E-F'}

        self.assertTrue(
            mock.call.get(services.SEPTA_NEXTTOARRIVE_URL, params=params) in
            mock_requests.mock_calls)
コード例 #2
0
ファイル: tests.py プロジェクト: amrod/CodingChallenge
    def test_get_next_to_arrive_ampersand(self, mock_requests):
        """Verify ampersand is handled correctly.
        """

        r = services.get_next_to_arrive(self.a, 'Airport Terminals E & F')
        params = {'req1': self.a, 'req2': 'Airport Terminals E-F'}

        self.assertTrue(
            mock.call.get(services.SEPTA_NEXTTOARRIVE_URL, params=params) in
            mock_requests.mock_calls)
コード例 #3
0
ファイル: tests.py プロジェクト: amrod/CodingChallenge
    def test_get_next_to_arrive(self, mock_requests):
        """Verify get_next_to_arrive performs a get request with proper
        parameters.
        """

        r = services.get_next_to_arrive(self.a, self.b)
        params = {'req1': self.a, 'req2': self.b}

        self.assertTrue(
            mock.call.get(services.SEPTA_NEXTTOARRIVE_URL, params=params) in
            mock_requests.mock_calls)
コード例 #4
0
ファイル: tests.py プロジェクト: amrod/CodingChallenge
    def test_get_next_to_arrive(self, mock_requests):
        """Verify get_next_to_arrive performs a get request with proper
        parameters.
        """

        r = services.get_next_to_arrive(self.a, self.b)
        params = {'req1': self.a, 'req2': self.b}

        self.assertTrue(
            mock.call.get(services.SEPTA_NEXTTOARRIVE_URL, params=params) in
            mock_requests.mock_calls)