diff --git a/test/job/adapters/linux_host_test.rb b/test/job/adapters/linux_host_test.rb new file mode 100644 index 00000000..87b4765a --- /dev/null +++ b/test/job/adapters/linux_host_test.rb @@ -0,0 +1,15 @@ +require 'test_helper' + +class LinuxHostTest < Minitest::Test + include TestHelper + + def linux_host_instance(config = { singularity_image: '/dev/null' }) + OodCore::Job::Factory.build({ adapter: 'linux_host' }.merge(config)) + end + + def test_instantiation + lha = linux_host_instance + + refute_nil(lha) + end +end \ No newline at end of file