module-puppetlabs-mysql/spec
Guillaume Coré dae8018520 Support multiple lines of the same option
Some MySQL options need to be passed several times. For example :

  http://dev.mysql.com/doc/refman/5.5/en/replication-options-slave.html#option_mysqld_replicate-do-db

  This is currently impossible with the override_options. This patch allows to
  pass array as value. Example :

    override_options => {
      'client' => {
        'password' => 'xxx',
      },
      'mysqld' => {
        'bind_address'    => '0.0.0.0',
        'replicate-do-db' => ['base1', 'base2', 'base3'],
      },
    }

  Which will be evaluated into :

    [client]
    password = xxx

    [mysqld]
    bind_address = 0.0.0.0
    replicate-do-db = base1
    replicate-do-db = base2
    replicate-do-db = base3
2013-12-18 16:00:12 -05:00
..
acceptance Support multiple lines of the same option 2013-12-18 16:00:12 -05:00
classes Support multiple lines of the same option 2013-12-18 16:00:12 -05:00
defines Rewrite spec tests to account for changes. 2013-09-13 13:14:48 -04:00
system Support multiple lines of the same option 2013-12-18 16:00:12 -05:00
unit Type mysql_grant was limited to work only with resource names foo@localhost/*.* or foo@localhost/bar.* but NOT with root@localhost/@ which is the parsed value of "GRANT PROXY ON ''@'' TO 'root'@'localhost' WITH GRANT OPTION" grant line. 2013-11-16 19:11:39 +01:00
spec.opts (#11508) Only load sql_scripts on DB creation 2011-12-19 07:25:35 -08:00
spec_helper.rb Add simplecov support in order to generate test coverage. 2013-08-28 18:11:21 -04:00
spec_helper_acceptance.rb Fixes to various failing tests. 2013-12-10 18:21:57 -05:00
spec_helper_system.rb Adding beaker-rspec test files 2013-12-06 14:52:41 -08:00