Sha256: 05c8da52624b3a0ee44ec5d533d1a778c41c858a2e4560ae69aee140b1787359

Contents?: true

Size: 389 Bytes

Versions: 3

Compression:

Stored size: 389 Bytes

Contents

# frozen_string_literal: true

require 'test_helper'

class NavigationTest < ActionDispatch::IntegrationTest
  include KPM::Engine.routes.url_helpers

  test 'can see the nodes info page' do
    get '/kpm'
    assert_response :success
  end

  test 'can restart bundle' do
    post '/kpm/nodes_info/plugin/restart?plugin_name=org.apache.felix.shell'
    assert_response :success
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
killbill-kpm-ui-2.0.2 test/integration/navigation_test.rb
killbill-kpm-ui-2.0.1 test/integration/navigation_test.rb
killbill-kpm-ui-2.0.0 test/integration/navigation_test.rb