summaryrefslogtreecommitdiff
path: root/test/lib/dslkeywords/chain_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/dslkeywords/chain_test.rb')
-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