コード例 #1
0
ファイル: main_test.py プロジェクト: jamesbyrnes/recep-test
 def test_mindist_argument_functionality(self):
     """
     Does the mindist function work in an equivalent way to the StationGraph
         object?
     """
     self.args.extend(['mindist', 'A,B'])
     parsed_args = main.get_arg_parser(self.args)
     output = main.argument_handler(parsed_args)
     self.assertEqual(output, self.stations.min_route_distance('A', 'B'))
コード例 #2
0
ファイル: main_test.py プロジェクト: jamesbyrnes/recep-test
 def test_disttrips_argument_functionality(self):
     """
     Does the disttrips function work in an equivalent way to the StationGraph
         object?
     """
     self.args.extend(['disttrips', 'A,B', '-M', '10'])
     parsed_args = main.get_arg_parser(self.args)
     output = main.argument_handler(parsed_args)
     self.assertEqual(output,
                      self.stations.num_trips_by_distance('A', 'B', 1, 10))
コード例 #3
0
ファイル: main_test.py プロジェクト: jamesbyrnes/recep-test
 def test_route_argument_functionality_nonexist(self):
     """
     Does the route function work in an equivalent way to the StationGraph
         object? (Non-existing route)
     """
     self.args.extend(['route', 'A,B,C'])
     parsed_args = main.get_arg_parser(self.args)
     output = main.argument_handler(parsed_args)
     self.assertEqual(output,
                      self.stations.get_distance_by_route(['A', 'B', 'C']))