Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. describe "parse_zip_file"
  2. it "should download from s3" do
  3. it "should extract files from zip" do
  4. it "should delegate to parse_csv for a csv" do
  5. it "should upload xls file to s3" do
  6. it "should delegate to parse_xlsx_file for an xls or xlsx" do
  7. it "should delete xls/xlsx file from s3 after processing" do
  8. it "should close local temp files when complete" do
  9.  
  10. describe "parse_file" do
  11. it "should delegate to parse_zip_file for a zip" do
  12. it "should delegate to parse_xlsx_file to an xls or xlsx" do
  13. it "should delegate to parse_csv_file for a csv or txt" do
  14. it "should raise exception for an unrecognized file type" do
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement