Sha256: 16ddaec87f1ba6c650d8960ef4e5c0813d9cdd08de49ff22af1e45cc8ef9e515
Contents?: true
Size: 832 Bytes
Versions: 3
Compression:
Stored size: 832 Bytes
Contents
require 'test_puppet_helper' require 'integration_test_helper' module ForemanPuppet class EnvironmentJSTest < IntegrationTestWithJavascript include ForemanPuppet::Engine.routes.url_helpers test 'index page' do assert_index_page(environments_path, 'Environments', 'Create Puppet Environment') end test 'create new page' do assert_new_button(environments_path, 'Create Puppet Environment', new_environment_path) fill_in 'environment_name', with: 'golive' assert_submit_button(environments_path) assert page.has_link? 'golive' end test 'edit page' do visit environments_path click_link 'production' fill_in 'environment_name', with: 'production222' assert_submit_button(environments_path) assert page.has_link? 'production222' end end end
Version data entries
3 entries across 3 versions & 1 rubygems