aboutsummaryrefslogtreecommitdiffstats
path: root/spec/mspec/lib/mspec/helpers/argv.rb
blob: c8cbbf2ac3d0609e3c710d34db4999d1abdc4627 (plain)
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
class Object
  # Convenience helper for altering ARGV. Saves the
  # value of ARGV and sets it to +args+. If a block
  # is given, yields to the block and then restores
  # the value of ARGV. The previously saved value of
  # ARGV can be restored by passing +:restore+. The
  # former is useful in a single spec. The latter is
  # useful in before/after actions. For example:
  #
  #   describe "This" do
  #     before do
  #       argv ['a', 'b']
  #     end
  #
  #     after do
  #       argv :restore
  #     end
  #
  #     it "does something" do
  #       # do something
  #     end
  #   end
  #
  #   describe "That" do
  #     it "does something" do
  #       argv ['a', 'b'] do
  #         # do something
  #       end
  #     end
  #   end
  def argv(args)
    if args == :restore
      ARGV.replace(@__mspec_saved_argv__ || [])
    else
      @__mspec_saved_argv__ = ARGV.dup
      ARGV.replace args
      if block_given?
        begin
          yield
        ensure
          argv :restore
        end
      end
    end
  end
end