def test_has_license(self, repo, my_license, expected):
     """ Method that performs a unit test of GithubOrgClient.has_license
         parameterize the test with some inputs
         (Parameterize)
     """
     result = GithubOrgClient('org')
     self.assertEqual(result.has_license(repo, my_license), expected)
 def test_has_license(self, x, y, z):
     """
     test_has_license.
     """
     git_c = GithubOrgClient("google")
     res = git_c.has_license(x, y)
     self.assertEqual(res, z)
    def test_has_license(self, repo, license, expected):
        '''
        Test test_has_license method.
        '''
        G_client = GithubOrgClient("facebook")

        self.assertEqual(
            G_client.has_license(repo, license),
            expected
        )
    def test_has_license(self, dict_val, key, expect):
        """[check license]

        Args:
            dict_val ([type]): [values]
            key ([type]): [key]
            expect ([type]): [expect]
        """
        status = GithubOrgClient.has_license(dict_val, key)
        self.assertEqual(status, expect)
예제 #5
0
 def test_has_license(self, repo, license, expected):
     """Testing for test_has_license"""
     g_client = GithubOrgClient("facebook")
     res = (g_client.has_license(repo, license))
     self.assertEqual(res, expected)
 def test_has_license(self, rep, key, license):
     """Method to unit-test GithubOrgClient.has_license"""
     self.assertEqual(GithubOrgClient.has_license(rep, key), license)
예제 #7
0
 def test_has_license(self, repo, license, expected):
     '''Test the existence of license'''
     self.assertEqual(GithubOrgClient.has_license(repo, license), expected)
예제 #8
0
 def test_has_license(self, repo, key, expectation):
     '''self descriptive'''
     result = GithubOrgClient.has_license(repo, key)
     self.assertEqual(result, expectation)
 def test_has_license(self, key: dict, license_key: str,
                      expected: bool) -> Any:
     """Method: Test has license"""
     test = GithubOrgClient('google')
     test_license = test.has_license(key, license_key)
     self.assertEqual(test_license, expected)
 def test_has_license(self, repo, license_key, expected_return):
     """ Method to unit-test GithubOrgClient.has_license
     """
     test_client = GithubOrgClient("twitter")
     test_return = test_client.has_license(repo, license_key)
     self.assertEqual(expected_return, test_return)
 def test_has_license(self, repo, key, expected):
     """[test_has_license]
     """
     client = GithubOrgClient("holberton")
     response = client.has_license(repo, key)
     self.assertEqual(expected, response)
예제 #12
0
 def test_has_license(self, repo, license_key, expected):
     """ Test function for client.GithubOrgClient.has_license """
     new_client = GithubOrgClient("new_org")
     self.assertEqual(new_client.has_license(repo, license_key), expected)
예제 #13
0
 def test_has_license(self, repo, license_key, expected):
     """ Test GithubOrgClient.has_license method
     """
     self.assertEqual(GithubOrgClient.has_license(repo, license_key),
                      expected)
 def test_has_license(self, repo, license_key, expected):
     """ this method unit-tests client.has_license """
     test = GithubOrgClient('birdsAREreal')
     self.assertEqual(test.has_license(repo, license_key), expected)
 def test_has_license(self, repo, license_key, expected_result):
     """ Tests GithubOrgClient.has_license """
     self.assertEqual(
         GithubOrgClient.has_license(repo, license_key),
         expected_result
     )
 def test_has_license(self, repo, license, expected):
     """ test the license checker """
     self.assertEqual(GithubOrgClient.has_license(repo, license), expected)
 def test_has_license(self, repo, return_val, license_key):
     """if has license
     """
     self.assertEqual(
         GithubOrgClient.has_license(repo, license_key), return_val
         )
 def test_has_license(self, expected, repo, license_key):
     'test GithubOrgClient.has_license'
     self.assertEqual(
         GithubOrgClient.has_license(repo=repo, license_key=license_key),
         expected)
    def test_has_license(self, repo, license, has_license):
        """ GithubOrgClient.has_license unittesting """

        test_class = GithubOrgClient("BigBrain")
        self.assertEqual(test_class.has_license(repo, license),
                         has_license)
예제 #20
0
 def test_has_license(self, repo, license_key, expected):
     """ unit-test for GithubOrgClient.has_license """
     result = GithubOrgClient.has_license(repo, license_key)
     self.assertEqual(result, expected)
예제 #21
0
 def test_has_license(self, repo, license, expected):
     """ Method that tests has_license function """
     git_client = GithubOrgClient("facebook")
     res = (git_client.has_license(repo, license))
     self.assertEqual(res, expected)