summaryrefslogtreecommitdiff
path: root/test/lib/dslkeywords/chain_test.rb
blob: b996dcb28914e96a600cd38fe1f38ab55f0565cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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