Sha256: 7e9ec9dd7c8f179e1bdd0c4bfad5c076cf11757214c34f161027a53aa289e5e1

Contents?: true

Size: 475 Bytes

Versions: 6

Compression:

Stored size: 475 Bytes

Contents

require 'test_helper'

module TechRadar
  class QuadrantsControllerTest < ActionController::TestCase
    setup do
      @routes = Engine.routes
    end

    test "show" do
      get :show, id: "Tools"
      assert_response :success
      assert response.body =~ /RabbitMQ.*Resque.*ElasticSearch.*HumbleKit.*Redis as a database.*Sidekiq.*JIRA.*SwiftTask/m,
        "Expected #{response.body} to contain all 'Tools' technologies, ordered by ring, then name"
    end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
tech_radar-0.4.0 test/controllers/tech_radar/quadrants_controller_test.rb
tech_radar-0.3.0 test/controllers/tech_radar/quadrants_controller_test.rb
tech_radar-0.2.1 test/controllers/tech_radar/quadrants_controller_test.rb
tech_radar-0.2.0 test/controllers/tech_radar/quadrants_controller_test.rb
tech_radar-0.1.0 test/controllers/tech_radar/quadrants_controller_test.rb
tech_radar-0.0.1 test/controllers/tech_radar/quadrants_controller_test.rb