Sha256: 5d40d6d2c750b0736202fe6bb2b102b4e1fcd6634573f4d313dfe3fb35808006
Contents?: true
Size: 487 Bytes
Versions: 2
Compression:
Stored size: 487 Bytes
Contents
require 'test_helper' module TechRadar class QuadrantsControllerTest < ActionController::TestCase setup do @routes = Engine.routes end test "show" do get :show, params: { 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tech_radar-0.6.0 | test/controllers/tech_radar/quadrants_controller_test.rb |
tech_radar-0.5.0 | test/controllers/tech_radar/quadrants_controller_test.rb |