Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit 2240609

Browse files
committed
Fix windows pending logic
1 parent ffe01e7 commit 2240609

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ build: off
99
install:
1010
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
1111
- ruby --version
12-
- ruby -e "puts RbConfig::CONFIG['host_os']"
1312
- gem --version
1413
- gem install bundler
1514
- bundler --version

spec/support/shared_example_groups.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
include_context "isolated directory"
1616
let(:project_dir) { Dir.getwd }
1717

18-
before(:example, :if => RSpec::Support::OS.windows?) do
18+
before(:example) do
1919
pending "Windows does not support symlinking"
20-
end
20+
end if RSpec::Support::OS.windows?
2121

2222
it "finds the files" do
2323
foos_dir = File.join(project_dir, "spec/foos")

0 commit comments

Comments
 (0)