Sha256: ca970842275e9fe9e21a8a58473b162f257d462b0bea0aa9252d27ea21536af5

Contents?: true

Size: 592 Bytes

Versions: 7

Compression:

Stored size: 592 Bytes

Contents

# frozen_string_literal: true

require 'test_plugin_helper'
# functional tests for SaltModulesController
module ForemanSalt
  class SaltModulesControllerTest < ActionController::TestCase
    setup do
      @model = FactoryBot.create(:salt_module)
    end

    basic_index_test "salt_modules"
    basic_new_test
    basic_edit_test "salt_module"

    test 'should destroy module' do
      assert_difference('SaltModule.count', -1) do
        delete :destroy, :params => { :id => @model.id }, :session => set_session_user
      end
      assert_redirected_to salt_modules_url
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
foreman_salt-14.0.0 test/functional/salt_modules_controller_test.rb
foreman_salt-13.2.4 test/functional/salt_modules_controller_test.rb
foreman_salt-13.2.3 test/functional/salt_modules_controller_test.rb
foreman_salt-13.2.2 test/functional/salt_modules_controller_test.rb
foreman_salt-13.2.1 test/functional/salt_modules_controller_test.rb
foreman_salt-13.2.0 test/functional/salt_modules_controller_test.rb
foreman_salt-13.1.0 test/functional/salt_modules_controller_test.rb