Blame view

test/client_test.rb 232 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
db76748d   Isaac Lewis   cop a bunch of St...
6
      assert_match /(\d+\.)?(\d+\.)?(\d+\.)?(\d+)/, client.get_syspro_version[0].http_body
51fb5579   Isaac Lewis   add client test, ...
7
8
    end
  end