We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cc382f commit 53883ffCopy full SHA for 53883ff
.github/workflows/test.yml
@@ -22,8 +22,5 @@ jobs:
22
ruby-version: '${{ matrix.ruby }}'
23
bundler-cache: true
24
25
- - name: Setup tmate session
26
- uses: mxschmitt/action-tmate@v3
27
-
28
- name: Run tests
29
run: bundle exec rspec
spec/completely/zsh_spec.rb
@@ -13,7 +13,9 @@
13
end
14
15
subject do
16
- `docker run --rm -it -v $PWD/spec/tmp:/app dannyben/zsh #{shell} /app/test.sh`.strip
+ Dir.chdir 'spec/tmp' do
17
+ `#{shell} test.sh`.strip
18
+ end
19
20
21
describe "completions script and test script" do
0 commit comments