コード例 #1
0
ファイル: tests.py プロジェクト: jjhelmus/atmos
 def test_no_calculation(self):
     sol = _get_shortest_solution(('x',), ('x',), (), self.methods)
     assert isinstance(sol, tuple)
     assert len(sol) == 3
     assert len(sol[0]) == 0
     assert len(sol[1]) == 0
     assert len(sol[2]) == 0
コード例 #2
0
ファイル: solve_tests.py プロジェクト: sunt05/atmosp
 def test_no_calculation(self):
     sol = _get_shortest_solution(('x',), ('x',), (), self.methods)
     assert isinstance(sol, tuple)
     assert len(sol) == 3
     assert len(sol[0]) == 0
     assert len(sol[1]) == 0
     assert len(sol[2]) == 0
コード例 #3
0
ファイル: tests.py プロジェクト: jjhelmus/atmos
 def test_depth_3_calculation(self):
     _get_shortest_solution(('w',), ('a', 'b'), (), self.methods)
コード例 #4
0
ファイル: tests.py プロジェクト: jjhelmus/atmos
 def test_simplest_calculation(self):
     sol = _get_shortest_solution(('y',), ('x',), (), self.methods)
     assert len(sol[0]) == 1
コード例 #5
0
ファイル: tests.py プロジェクト: jjhelmus/atmos
 def test_depth_3_calculation(self):
     _get_shortest_solution(('w', ), ('a', 'b'), (), self.methods)
コード例 #6
0
ファイル: tests.py プロジェクト: jjhelmus/atmos
 def test_simplest_calculation(self):
     sol = _get_shortest_solution(('y', ), ('x', ), (), self.methods)
     assert len(sol[0]) == 1