forked from rspec/rspec-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_fixture.feature
38 lines (32 loc) · 1.06 KB
/
file_fixture.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Feature: file fixture
Rails 5 adds simple access to sample files called file fixtures.
File fixtures are normal files stored in spec/fixtures/files by default.
File fixtures are represented as +Pathname+ objects.
This makes it easy to extract specific information:
```ruby
file_fixture("example.txt").read # get the file's content
file_fixture("example.mp3").size # get the file size
```
You can customize files location by setting
```ruby
RSpec.configure do |config|
config.file_fixture_path = "spec/custom_directory"
end
```
Scenario: Reading file content from fixtures directory
Given file fixtures are available
And a file named "spec/fixtures/files/sample.txt" with:
"""
Hello
"""
And a file named "spec/lib/file_spec.rb" with:
"""ruby
require "rails_helper"
RSpec.describe "file" do
it "reads sample file" do
expect(file_fixture("sample.txt").read).to eq("Hello")
end
end
"""
When I run `rspec spec/lib/file_spec.rb`
Then the examples should all pass