コード例 #1
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.ComparisonCommand"
     assert isinstance(
         rs.get_class(classname).newInstance(), ccmd.ComparisonCommand)
コード例 #2
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_get_Class(self):
     cmd = "nbdiff.server.command.UploadCommand"
     module = "module 'nbdiff.server.command.UploadCommand' "
     assert module in str(rs.get_class(cmd))
コード例 #3
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_newInstance(self):
     assert isinstance(
         rs.get_class("nbdiff.server.command.AboutUsCommand").newInstance(),
         aucmd.AboutUsCommand)
コード例 #4
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.SaveNotebookCommand"
     assert isinstance(
         rs.get_class(classname).newInstance(), sncmd.SaveNotebookCommand)
コード例 #5
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_newInstance(self):
     assert isinstance(
         rs.get_class("nbdiff.server.command.UploadCommand").newInstance(),
         ucmd.UploadCommand)
コード例 #6
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.NotebookRequestCommand"
     assert isinstance(
         rs.get_class(classname).newInstance(),
         nrcmd.NotebookRequestCommand)
コード例 #7
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.ResourceRequestCommand"
     assert isinstance(
         rs.get_class(classname).newInstance(),
         rrcmd.ResourceRequestCommand)
コード例 #8
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.ComparisonCommand"
     assert isinstance(rs.get_class(classname).newInstance(), ccmd.ComparisonCommand)
コード例 #9
0
ファイル: test_remote_server.py プロジェクト: willingc/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.MergeURLCommand"
     assert isinstance(
         rs.get_class(classname).newInstance(), mucmd.MergeURLCommand)
コード例 #10
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_get_Class(self):
     cmd = "nbdiff.server.command.UploadCommand"
     module = "module 'nbdiff.server.command.UploadCommand' "
     assert module in str(rs.get_class(cmd))
コード例 #11
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_newInstance(self):
     assert isinstance(rs.get_class("nbdiff.server.command.AboutUsCommand").newInstance(), aucmd.AboutUsCommand)
コード例 #12
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_newInstance(self):
     assert isinstance(rs.get_class("nbdiff.server.command.UploadCommand").newInstance(), ucmd.UploadCommand)
コード例 #13
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.SaveNotebookCommand"
     assert isinstance(rs.get_class(classname).newInstance(), sncmd.SaveNotebookCommand)
コード例 #14
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.ResourceRequestCommand"
     assert isinstance(rs.get_class(classname).newInstance(), rrcmd.ResourceRequestCommand)
コード例 #15
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.NotebookRequestCommand"
     assert isinstance(rs.get_class(classname).newInstance(), nrcmd.NotebookRequestCommand)
コード例 #16
0
ファイル: test_remote_server.py プロジェクト: mforbes/nbdiff
 def test_newInstance(self):
     classname = "nbdiff.server.command.MergeURLCommand"
     assert isinstance(rs.get_class(classname).newInstance(), mucmd.MergeURLCommand)