Skip to content

Commit

Permalink
Add a failing test for default config error
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Martinsen-Burrell committed Aug 25, 2016
1 parent c37d74e commit 31a8911
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,7 @@ def test_update(self):
self.assertNotEqual(self.client.config.all, updated)
self.client.config.update(updated)
self.assertEqual(self.client.config.all, updated)

def test_default_config(self):
'''We can get default config values.'''
self.assertEqual(self.client.config['heartbeat'], 60)

0 comments on commit 31a8911

Please sign in to comment.