summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/chained.rb7
-rw-r--r--test/lib/dslkeywords/chain_test.rb14
2 files changed, 21 insertions, 0 deletions
diff --git a/lib/chained.rb b/lib/chained.rb
new file mode 100644
index 0000000..d775a6d
--- /dev/null
+++ b/lib/chained.rb
@@ -0,0 +1,7 @@
+module RCM
+ # To allow chained barwords, e.g. "i want a beer"
+ module Chained
+ def method_missing(method_name, *args) = ([method_name] + args.flatten).join(' ')
+ def respond_to_missing? = true
+ end
+end
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