relative File Path in RSpec

前端 未结 3 496
忘了有多久
忘了有多久 2021-01-17 17:37

I have a RSpec test for a class in /lib/classes which needs access to a zip file (no upload). The file is stored in /spec/fixtures/files/test.zip.

3条回答
  •  一整个雨季
    2021-01-17 18:10

    Rails.root will give you the app root, so

    Rails.root.join "spec/fixtures/files/test.zip"
    

    will give you the absolute path of your file, agnostic of the location of the app on your hard drive.

提交回复
热议问题