File: setup_and_teardown_adapter_spec.rb

package info (click to toggle)
ruby-rspec-rails 8.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,804 kB
  • sloc: ruby: 10,881; sh: 198; makefile: 6
file content (47 lines) | stat: -rw-r--r-- 1,945 bytes parent folder | download | duplicates (4)
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
47
RSpec.describe RSpec::Rails::SetupAndTeardownAdapter do
  describe ".setup" do
    it "registers before hooks in the order setup is received" do
      group = RSpec::Core::ExampleGroup.describe do
        include RSpec::Rails::SetupAndTeardownAdapter
        def self.foo; "foo"; end
        def self.bar; "bar"; end
      end
      expect(group).to receive(:before).ordered { |&block| expect(block.call).to eq "foo" }
      expect(group).to receive(:before).ordered { |&block| expect(block.call).to eq "bar" }
      expect(group).to receive(:before).ordered { |&block| expect(block.call).to eq "baz" }

      group.setup :foo
      group.setup :bar
      group.setup { "baz" }
    end

    it "registers prepend_before hooks for the Rails' setup methods" do
      group = RSpec::Core::ExampleGroup.describe do
        include RSpec::Rails::SetupAndTeardownAdapter
        def self.setup_fixtures; "setup fixtures"  end
        def self.setup_controller_request_and_response; "setup controller"  end
      end

      expect(group).to receive(:prepend_before) { |&block| expect(block.call).to eq "setup fixtures" }
      expect(group).to receive(:prepend_before) { |&block| expect(block.call).to eq "setup controller" }

      group.setup :setup_fixtures
      group.setup :setup_controller_request_and_response
    end

    it "registers teardown hooks in the order setup is received" do
      group = RSpec::Core::ExampleGroup.describe do
        include RSpec::Rails::SetupAndTeardownAdapter
        def self.foo; "foo"; end
        def self.bar; "bar"; end
      end
      expect(group).to receive(:after).ordered { |&block| expect(block.call).to eq "foo" }
      expect(group).to receive(:after).ordered { |&block| expect(block.call).to eq "bar" }
      expect(group).to receive(:after).ordered { |&block| expect(block.call).to eq "baz" }

      group.teardown :foo
      group.teardown :bar
      group.teardown { "baz" }
    end
  end
end