Blame view

test/client_test.rb 229 Bytes
51fb5579   Isaac Lewis   add client test, ...
1
2
3
4
5
  require "test_helper"
  
  class SysproClientTest < Minitest::Test
    def test_get_syspro_version
      client = ::Syspro::SysproClient.new
697a8854   Isaac Lewis   update tests
6
      assert_match (/(\d+\.)?(\d+\.)?(\d+\.)?(\d+)/), client.get_syspro_version.version
51fb5579   Isaac Lewis   add client test, ...
7
8
    end
  end