Blame view

test/comsfm_test.rb 801 Bytes
d9a9cb5d   chadzink   Add portoi and co...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  # frozen_string_literal: true
  
  require 'test_helper'
  
  class ComsFmTest < Minitest::Test
    extend Minitest::Spec::DSL
  
    let(:username) { ENV['SYSPRO_USERNAME'] }
    let(:password) { ENV['SYSPRO_PASSWORD'] }
    let(:company) { ENV['SYSPRO_COMPANY'] }
    let(:company_password) { '' }
    let(:user_id) do
      Syspro::Logon.logon(username, password, company, company_password)
    end
  
    def test_comsfm
      cust_item = Syspro::BusinessObjects::Models::ComsFmItem.new
      cust_item.form_type = "POR"
      cust_item.key_field = "U03421"
      cust_item.field_name = "TempPO"
      cust_item.alpha_value = "Y"
  
      cust_form = Syspro::BusinessObjects::ComsFm.new
      cust_form.validate_only = "Y"
      cust_form.items = [cust_item]
  
762ae45f   chadzink   Added InvSws Busi...
27
      errors = cust_form.add(user_id.guid)
d9a9cb5d   chadzink   Add portoi and co...
28
29
30
31
  
      assert_equal errors.length, 0
    end
  end