This repository has been archived by the owner on Mar 1, 2019. It is now read-only.
forked from cucumber/aruba
-
Notifications
You must be signed in to change notification settings - Fork 1
/
be_an_absolute_path.feature
74 lines (58 loc) · 1.95 KB
/
be_an_absolute_path.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Feature: Check if path is absolute
If you need to check if a given path is absolute , you can use the
`be_an_absolute_path`-matcher. It doesn't care if the path is a directory or
a path.
```ruby
require 'spec_helper'
RSpec.describe 'Check if path is absolute', :type => :aruba do
let(:path) { 'file.txt' }
before(:each) { touch(path) }
it { expect(path).to be_an_absolute_path }
end
```
Background:
Given I use a fixture named "cli-app"
Scenario: Expect single existing path
Given a file named "spec/absolute_path_spec.rb" with:
"""
require 'spec_helper'
RSpec.describe 'Check if path is absolute', :type => :aruba do
let(:path) { '/path/to/file.txt' }
it { expect(path).to be_an_absolute_path }
end
"""
When I run `rspec`
Then the specs should all pass
Scenario: Expect multiple absolute paths
Given a file named "spec/absolute_path_spec.rb" with:
"""
require 'spec_helper'
RSpec.describe 'Check if path is absolute', :type => :aruba do
let(:paths) { %w(/path/to/path1.txt /path/to/path2.txt) }
it { expect(paths).to all be_an_absolute_path }
end
"""
When I run `rspec`
Then the specs should all pass
Scenario: Expect a least one existing path
Given a file named "spec/absolute_path_spec.rb" with:
"""
require 'spec_helper'
RSpec.describe 'Check if path is absolute', :type => :aruba do
let(:paths) { %w(/path/to/path1.txt path2.txt) }
it { expect(paths).to include an_absolute_path }
end
"""
When I run `rspec`
Then the specs should all pass
Scenario: Expect failure on relative path
Given a file named "spec/absolute_path_spec.rb" with:
"""
require 'spec_helper'
RSpec.describe 'Check if path is absolute', :type => :aruba do
let(:paths) { %w(path2.txt) }
it { expect(paths).to be_an_absolute_path }
end
"""
When I run `rspec`
Then the specs should not all pass