Skip to content

Commit

Permalink
Add unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesus89 committed Apr 30, 2020
1 parent 6c3e568 commit 03c3cb7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/unit/viz/test_palettes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from cartoframes.viz import palettes


class TestPalettes(object):
def test_is_defined(self):
"palettes"
assert palettes is not None

def test_has_defined_palettes(self):
"palettes content"
assert palettes.burg == 'BURG'
assert palettes.burgyl == 'BURGYL'
assert palettes.cb_set3 == 'CB_SET3'

0 comments on commit 03c3cb7

Please sign in to comment.