Sha256: 28c1548a8db21bc4b71cc62cd70d6a4d4537ec5f93ba18f65d289d07f2bf9b6d

Contents?: true

Size: 612 Bytes

Versions: 12

Compression:

Stored size: 612 Bytes

Contents

require 'test_helper_dummy'

module IntegrationTests
  extend ActiveSupport::Concern
  included do

    fixtures :all

    it 'works' do
      get root_path
      status.must_equal 200
    end

    it 'can find the app' do
      app.must_be_instance_of Dummy::Application
    end

    describe 'nested 1' do

      it('works') { skip }

      it 'can find the app' do
        app.must_be_instance_of Dummy::Application
      end

      describe 'nested 2' do

        it('works') { skip }

      end

    end
    
  end
end

class IntegrationTest < ActionDispatch::IntegrationTest
  include IntegrationTests
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
minitest-spec-rails-4.7.2 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.7.1 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.7.0 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.8 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.7 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.6 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.5 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.4 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.3 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.2 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.1 test/dummy_tests/integration_test.rb
minitest-spec-rails-4.3.0 test/dummy_tests/integration_test.rb