Skip to content

Commit

Permalink
Merge pull request #274 from richardstrnad/master
Browse files Browse the repository at this point in the history
Added Python3.5 to shippable, Updated Tests
  • Loading branch information
michsmit99 committed Dec 21, 2016
2 parents 9e1dff6 + 25b959f commit 7be70c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions shippable.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: python
python:
- "2.7"
- "3.4"
- "pypy"
cache: true

Expand Down
6 changes: 3 additions & 3 deletions tests/aciphysobject_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -618,16 +618,16 @@ def test_basic_create(self):
def test_get_config_size(self):
cluster = Cluster('test-cluster')
cluster.config_size = 50
self.assertEquals(cluster.get_config_size(), 50)
self.assertEqual(cluster.get_config_size(), 50)

def test_get_cluster_size(self):
cluster = Cluster('test-cluster')
cluster.cluster_size = 50
self.assertEquals(cluster.get_cluster_size(), 50)
self.assertEqual(cluster.get_cluster_size(), 50)

def test_get_apics(self):
cluster = Cluster('test-cluster')
self.assertEquals(len(cluster.get_apics()), 0)
self.assertEqual(len(cluster.get_apics()), 0)


class TestLiveAPIC(unittest.TestCase):
Expand Down

0 comments on commit 7be70c8

Please sign in to comment.