29 lines
372 B
Python
29 lines
372 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
test_git_lint
|
|
----------------------------------
|
|
|
|
Tests for `git_lint` module.
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
|
from git_lint import git_lint
|
|
|
|
class TestGit_lint(object):
|
|
|
|
@classmethod
|
|
def setup_class(cls):
|
|
pass
|
|
|
|
def test_something(self):
|
|
pass
|
|
|
|
@classmethod
|
|
def teardown_class(cls):
|
|
pass
|
|
|