File: test_pbcore_data.py

package info (click to toggle)
python-pbcore 1.2.11%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 18,612 kB
  • ctags: 5,336
  • sloc: python: 22,160; xml: 2,667; makefile: 239
file content (12 lines) | stat: -rw-r--r-- 326 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
from nose.tools import assert_equal
from pbcore import data

class TestGetCmpH5s:
    def test_get_cmp_h5s(self):
        for item in data.getCmpH5s():
            assert 'cmph5' in item
            assert 'bash5s' in item

class TestGetCmpH5:
    def test_get_cmp_h5(self):
        assert data.getCmpH5().endswith(".cmp.h5")