Sha256: e08c9115a34b2e0e02f70aea817d73d2e621605de3fa02146ecd718e4aa5183d

Contents?: true

Size: 970 Bytes

Versions: 2

Compression:

Stored size: 970 Bytes

Contents

require 'test_plugin_helper'
require 'integration_test_helper'

module ForemanSalt
  class SaltEnvironmentTest < ActionDispatch::IntegrationTest
    test 'index page' do
      FactoryBot.create_list :salt_environment, 5
      assert_index_page(salt_environments_path, 'Salt Environment', 'New Salt Environment')
    end

    test 'create new page' do
      assert_new_button(salt_environments_path, 'New Salt Environment', new_salt_environment_path)
      fill_in 'foreman_salt_salt_environment_name', :with => 'common'
      assert_submit_button(salt_environments_path)
      assert page.has_link? 'common'
    end

    test 'edit page' do
      salt_environment = FactoryBot.create :salt_environment
      visit salt_environments_path
      click_link salt_environment.name
      fill_in 'foreman_salt_salt_environment_name', :with => 'some_other_name'
      assert_submit_button(salt_environments_path)
      assert page.has_link? 'some_other_name'
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
foreman_salt-10.1.0 test/integration/salt_environment_test.rb
foreman_salt-10.0.0 test/integration/salt_environment_test.rb