pricefetch_conrad.py 424 B

1234567891011121314
  1. from tests._lib import *
  2. testData = (
  3. ("405132 - 62", PriceFetcher.Result.FOUND),
  4. ("405132", PriceFetcher.Result.FOUND),
  5. ("9999999 - 99", PriceFetcher.Result.NOTFOUND),
  6. ("9999999", PriceFetcher.Result.NOTFOUND),
  7. ("405191", PriceFetcher.Result.FOUND),
  8. ("405191 - 62", PriceFetcher.Result.FOUND),
  9. ("408042 - 62", PriceFetcher.Result.FOUND),
  10. ("408042", PriceFetcher.Result.FOUND),
  11. )
  12. priceFetchTest("conrad", testData)