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 76ce388 commit 7be51a5Copy full SHA for 7be51a5
spec/loops/cli_spec.rb
@@ -35,7 +35,7 @@
35
36
it 'should load config from config/loops.yml by default' do
37
cli = Loops::CLI.parse(@args)
38
- expect(cli.engine.global_config['pid_file']).to eq('/var/run/superloops.pid')
+ expect(cli.engine.global_config['pid_file']).to eq('/tmp/superloops.pid')
39
end
40
41
it 'should load config from file specified' do
@@ -55,7 +55,7 @@
55
56
it 'should use pid file from global config section' do
57
Loops::CLI.parse(@args)
58
- expect(Loops.pid_file).to eq(Pathname.new('/var/run/superloops.pid'))
+ expect(Loops.pid_file).to eq(Pathname.new('/tmp/superloops.pid'))
59
60
61
it 'should absolutize relative pid file path' do
0 commit comments