コード例 #1
0
ファイル: test_set_context.py プロジェクト: xmonader/allura
 def test_that_it_raises_an_exception(self):
     nbhd = create_neighborhood()
     assert_raises(NoSuchProjectError,
                   set_context,
                   'myproject',
                   neighborhood=nbhd)
コード例 #2
0
ファイル: test_set_context.py プロジェクト: Bitergia/allura
 def test_proper_exception_when_id_lookup(self):
     nbhd = create_neighborhood()
     assert_raises(NoSuchProjectError,
                   set_context,
                   ObjectId(),
                   neighborhood=None)
コード例 #3
0
ファイル: test_set_context.py プロジェクト: xmonader/allura
 def test_proper_exception_when_id_lookup(self):
     create_neighborhood()
     assert_raises(NoSuchProjectError,
                   set_context,
                   ObjectId(),
                   neighborhood=None)
コード例 #4
0
ファイル: test_set_context.py プロジェクト: Bitergia/allura
 def test_that_it_raises_an_exception(self):
     nbhd = create_neighborhood()
     assert_raises(NoSuchProjectError,
                   set_context,
                   'myproject',
                   neighborhood=nbhd)