File tree 3 files changed +8
-10
lines changed
3 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 1
1
# This file is responsible for configuring your application
2
2
# and its dependencies with the aid of the Mix.Config module.
3
- use Mix. Config
3
+ import Config
4
4
5
5
config :bypass , test_framework: :ex_unit
6
6
Original file line number Diff line number Diff line change @@ -3,16 +3,14 @@ defmodule Bypass.Utils do
3
3
4
4
Application . load ( :bypass )
5
5
6
- if Application . get_env ( :bypass , :enable_debug_log , false ) do
7
- defmacro debug_log ( msg ) do
8
- quote bind_quoted: [ msg: msg ] do
6
+ defmacro debug_log ( msg ) do
7
+ quote bind_quoted: [ msg: msg ] do
8
+ if Application . get_env ( :bypass , :enable_debug_log , false ) do
9
9
require Logger
10
10
Logger . debug ( [ "[bypass] " , msg ] )
11
+ else
12
+ :ok
11
13
end
12
14
end
13
- else
14
- defmacro debug_log ( _msg ) do
15
- :ok
16
- end
17
15
end
18
16
end
Original file line number Diff line number Diff line change @@ -541,7 +541,7 @@ defmodule BypassTest do
541
541
end
542
542
543
543
test "Bypass.verify_expectations! - with ESpec it will check if the expectations are being met" do
544
- Mix.Config . persist ( bypass: [ test_framework: :espec ] )
544
+ Application . put_all_env ( bypass: [ test_framework: :espec ] )
545
545
546
546
# Fail: no requests
547
547
bypass = prepare_stubs ( )
@@ -579,7 +579,7 @@ defmodule BypassTest do
579
579
Bypass . verify_expectations! ( bypass )
580
580
end
581
581
582
- Mix.Config . persist ( bypass: [ test_framework: :ex_unit ] )
582
+ Application . put_all_env ( bypass: [ test_framework: :ex_unit ] )
583
583
end
584
584
585
585
test "Bypass.open/1 raises when cannot start child" do
You can’t perform that action at this time.
0 commit comments