blob: 54b45d146ac634377294f6a19237b05fee80807f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | require File.expand_path('../test_helper', __FILE__)
class ConfigObjectTest < Minitest::Test
  def test_bracket_lookup
    domain = provider.domain
    vpn1 = manager.nodes['vpn1']
    assert_equal "vpn1.#{domain}", vpn1['domain.full']
  end
end
 |