summaryrefslogtreecommitdiff
path: root/test/git/test_utils.py
blob: b8fcfb3e7da35a8cc8abce7e2d87a1dccebb1b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import os
from test.testlib import *
from git import *

class TestUtils(object):
    def setup(self):
        self.testdict = {
            "string":   "42",
            "int":      42,
            "array":    [ 42 ],
        }

    def test_it_should_dashify(self):
        assert_equal('this-is-my-argument', dashify('this_is_my_argument'))
        assert_equal('foo', dashify('foo'))