summaryrefslogtreecommitdiff
path: root/spec/integration/rails/integration_spec.rb
blob: 9b150a22c30ea4cdb9e4f62472d9ee580c9456cc (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
ENV['RAILS_ENV'] = 'test'

require 'rspec/core'

RSpec.describe 'rails', type: :request do
  let(:stdout) { StringIO.new }

  around(:each) do |example|
    original_stdout = $stdout
    $stdout = stdout
    require_relative 'app'
    require 'rspec/rails'
    example.run
    $stdout = original_stdout
  end

  it 'does not log anything to STDOUT when initializing and sets the Hashie logger to the Rails logger' do
    expect(stdout.string).to eq('')
    expect(Hashie.logger).to eq(Rails.logger)
  end

  it 'works' do
    get '/'
    assert_select 'h1', 'Hello, world!'
  end
end