summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-02-19 01:29:29 +0200
committerPaul Buetow <paul@buetow.org>2025-02-19 01:29:29 +0200
commit19d768bd12231e96e82d21ac551865d447d04b8b (patch)
tree8cc0cba1203c68995534254ba637c3fa169c1ab1 /test
parente37f1d7dfeb3ff40ee80c6e097cae30b9ec512c4 (diff)
add chained
Diffstat (limited to 'test')
-rw-r--r--test/lib/dslkeywords/chain_test.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/lib/dslkeywords/chain_test.rb b/test/lib/dslkeywords/chain_test.rb
new file mode 100644
index 0000000..b996dcb
--- /dev/null
+++ b/test/lib/dslkeywords/chain_test.rb
@@ -0,0 +1,14 @@
+require 'minitest/autorun'
+require 'fileutils'
+
+require_relative '../../../lib/dsl'
+
+class RCMChainTest < Minitest::Test
+ def test_chain
+ configure_from_scratch do
+ notify hello dear world do
+ thank you to be part of you
+ end
+ end
+ end
+end