Feature: Purchase Emissions Calculations The purchase model should generate correct emission calculations Scenario: Calculations starting from nothing Given a purchase has nothing When emissions are calculated Then the emission value should be within "0.001" kgs of "126.538" Scenario: Calculations starting from purchase amount Given a purchase has "purchase_amount" of "107.11" When emissions are calculated Then the emission value should be within "0.001" kgs of "126.538" Scenario: Calculations starting from date Given a purchase has "date" of "2010-07-28" When emissions are calculated Then the emission value should be within "0.001" kgs of "126.538" Scenario Outline: Calculations starting from a merchant Given a purchase has "merchant.id" of "" When emissions are calculated Then the emission value should be within "0.001" kgs of "" Examples: | id | emission | | 1 | 126.538 | | 2 | 274.131 | Scenario Outline: Calculations starting from a merchant with purchase amount Given a purchase has "merchant.id" of "" And it has "purchase_amount" of "" When emissions are calculated Then the emission value should be within "0.001" kgs of "" Examples: | id | amount | emission | | 1 | 107.11 | 126.538 | | 2 | 107.11 | 274.131 | Scenario Outline: Calculations starting from a merchant with purchase amount and date Given a purchase has "merchant.id" of "" And it has "purchase_amount" of "" And it has "date" of "" When emissions are calculated Then the emission value should be within "0.001" kgs of "" Examples: | id | amount | date | emission | | 1 | 107.11 | 2010-07-28 | 126.538 | | 2 | 107.11 | 2010-07-28 | 274.131 | Scenario Outline: Calculations starting from a merchant with purchase amount, date, and tax Given a purchase has "merchant.id" of "" And it has "purchase_amount" of "" And it has "tax" of "" And it has "date" of "" When emissions are calculated Then the emission value should be within "0.001" kgs of "" Examples: | id | amount | tax | date | emission | | 1 | 108.00 | 8.00 | 2010-07-28 | 126.538 | | 2 | 108.00 | 8.00 | 2010-07-28 | 274.131 | Scenario Outline: Calculations starting from a merchant category Given a purchase has "merchant_category.mcc" of "" And it has "cost" of "" And it has "date" of "" When emissions are calculated Then the emission value should be within "0.001" kgs of "" Examples: | mcc | cost | date | emission | | 1111 | 100.00 | 2010-07-28 | 126.538 | | 2222 | 100.00 | 2010-07-28 | 274.131 | | 5111 | 100.00 | 2010-07-28 | 126.538 | Scenario Outline: Calculations starting from industry Given a purchase has "industry.naics_code" of "" And it has "cost" of "" And it has "date" of "" When emissions are calculated Then the emission value should be within "0.001" kgs of "" Examples: | naics | cost | date | emission | | 111111 | 100.00 | 2010-07-28 | 126.538 | | 399900 | 100.00 | 2010-07-28 | 334.190 | | 459000 | 100.00 | 2010-07-28 | 214.072 |