Skip to content

Commit

Permalink
tests: Update URL of beatbox
Browse files Browse the repository at this point in the history
Also lock in beatbox3

Closes #117
  • Loading branch information
jayvdb committed Apr 20, 2020
1 parent 7004a82 commit 3797b0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions tests/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"backports-shutil-get-terminal-size": "https://github.com/chrippa/backports.shutil_get_terminal_size",
"backports-shutil-which": "https://github.com/minrk/backports.shutil_which",
"backports-ssl-match-hostname": "https://bitbucket.org/brandon/backports.ssl_match_hostname",
"beatbox3": "https://github.com/superfell/Beatbox",
"betamax-serializers": "https://gitlab.com/betamax/serializers",
"bolt-python": "https://github.com/bolt-project/bolt",
"BytecodeAssembler": "https://github.com/peak-legacy/bytecodeassembler",
Expand Down Expand Up @@ -237,6 +238,7 @@
"aws-sam-translator": "https://github.com/awslabs/serverless-application-model",
"azure": "https://github.com/Azure/azure-sdk-for-python",
"barnum": "https://github.com/chris1610/barnum-proj",
"beatbox": "https://code.google.com/p/salesforce-beatbox",
"bert-serving-server": "https://github.com/hanxiao/bert-as-service",
"blurb": "https://github.com/python/core-workflow",
"boto3-stubs": "https://github.com/vemel/mypy_boto3_builder",
Expand Down
8 changes: 4 additions & 4 deletions tests/test_google_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ def test_django_swaps(self):
url = self.converter.get_vcs("django-swaps")
self.assertInsensitiveEqual(url, "https://code.google.com/p/django-swaps")

def test_beatbox(self):
url = self.converter.get_vcs("beatbox")
self.assertInsensitiveEqual(url, "https://code.google.com/p/salesforce-beatbox")


class TestRedirectOther(_TestBase):
def test_mox3(self):
Expand All @@ -128,10 +132,6 @@ def test_dpkt(self):
url = self.converter.get_vcs("dpkt")
self.assertInsensitiveEqual(url, "https://github.com/kbandla/dpkt")

def test_beatbox(self):
url = self.converter.get_vcs("beatbox")
self.assertInsensitiveEqual(url, "https://github.com/superfell/Beatbox")

def test_pydot2(self):
url = self.converter.get_vcs("pydot2")
self.assertInsensitiveEqual(url, "https://github.com/erocarrera/pydot")
Expand Down

0 comments on commit 3797b0b

Please sign in to comment.