Skip to content

Commit 2e593d3

Browse files
committed
WIP Create test_mise_install.rb
1 parent d54c207 commit 2e593d3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# frozen_string_literal: true
2+
3+
require "test_helper"
4+
5+
class Serverkit::Resources::TestMiseInstall < Minitest::Test
6+
def setup
7+
a = {}
8+
b = {}
9+
@resource = Serverkit::Resources::MiseInstall.new(a, b)
10+
end
11+
12+
def test_resources
13+
assert_instance_of Serverkit::Resources::MiseInstall, @resource
14+
end
15+
end

0 commit comments

Comments
 (0)