summaryrefslogtreecommitdiff
path: root/test/lib/dslkeywords/dependency_test.rb
blob: ccbaec60b1813e3f8839a071aee3929765c70bf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'minitest/autorun'
require 'fileutils'

require_relative '../../../lib/dsl'

class RCMDependencyTest < Minitest::Test
  def test_dependency
    configure_from_scratch do
      notify 'foo' do
        depends_on notify['bar'], file['baz']
        :HELLO
      end

      notify 'bar'
    end
  end
end