diff --git a/test/Makefile.am b/test/Makefile.am index a3c9c5367..eb5de4aa5 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -9,7 +9,8 @@ TESTS = \ product_patterns_test.rb \ source_dialogs_test.rb \ space_calculation_test.rb \ - lib/cfa/zypp_conf_test.rb + lib/cfa/zypp_conf_test.rb \ + lib/clients/software_proposal_test.rb TEST_EXTENSIONS = .rb RB_LOG_COMPILER = rspec diff --git a/test/lib/clients/software_proposal_test.rb b/test/lib/clients/software_proposal_test.rb new file mode 100755 index 000000000..4c32c85b0 --- /dev/null +++ b/test/lib/clients/software_proposal_test.rb @@ -0,0 +1,10 @@ +#!/usr/bin/env rspec + +require_relative "../../test_helper" +require "packager/clients/software_proposal" + +describe Yast::SoftwareProposalClient do + it "can be constructed" do + expect { subject }.to_not raise_error + end +end