Skip to content

Commit

Permalink
Nifti test skeleton and comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperVanDenBosch committed Feb 5, 2015
1 parent 7894dcf commit e1493fe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tests/test_nifti.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import unittest
from mock import Mock
from datetime import datetime
from tests.basefile import BasicInspectionTests


class NiftiTests(BasicInspectionTests):

def setUp(self):
super(NiftiTests, self).setUp()
self.libs = Mock()
# from niprov.nifti import NiftiFile
# self.file = NiftiFile(self.path, listener=self.log,
# filesystem=self.filesys, hasher=self.hasher, dependencies=self.libs,
# serializer=self.json)


# dump_ext = nifti1.Nifti1Extension('comment', 'content')
# nhdr.extensions.append(dump_ext)

0 comments on commit e1493fe

Please sign in to comment.