Feature: Purchase Committee Calculations The purchase model should generate correct committee calculations Scenario Outline: Standard Calculations for Given a flight has "origin_airport.iata_code" of "" And it has "destination_airport.iata_code" of "" And it has "airline.iata_code" of "" And it has "date" of "" And it used "aircraft.icao_code" "" When emissions are calculated Then the fuel committee should be close to , +/-1 And the fuel_per_segment committee should be close to , +/-10 And the adjusted_distance_per_segment committee should be close to , +/-1 And the load_factor committee should be close to , +/-0.001 And the passengers committee should be exactly And the adjusted_distance committee should be close to , +/-1 Examples: | source | dest | airline | date | aircraft | fuel | fuel_per_segment | adjusted_distance_per_segment | load_factor | passengers | adjusted_distance | | DTW | SFO | UA | 2010-06-25 | A320 | 24676 | 7612 | 1341 | 0.788 | 118 | 2241 | | IAD | CDG | AF | 2010-06-25 | A320 | 43477 | 13413 | 2492 | 0.800 | 120 | 4161 |