Skip to content

Commit

Permalink
Update tests to use baseline instead of init for 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zero5100 committed Jul 23, 2015
1 parent bb006c6 commit dd95498
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@ module.exports = function(grunt) {

// Configuration to be run (and then tested).
flyway: {

options: {
driver : 'com.mysql.jdbc.Driver',
initDescription : 'Sample database created using Flyway :-)',
initVersion : '1.0',
baselineDescription : 'Sample database created using Flyway :-)',
baselineVersion : '1.0',
url : 'jdbc:mysql://localhost/flyway',
user : 'flyway',
password : 'flyway'
},

/*clean : {},*/

init : {
command : 'init'
baseline : {
command : 'baseline'
}/*,
migrate: {
Expand All @@ -68,7 +68,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-nodeunit');

// Whenever the "test" task is run, first clean the "tmp" dir, then run this
// plugin's task(s), then test the result.
grunt.registerTask('test', ['clean', 'flyway', 'nodeunit']);
Expand Down

0 comments on commit dd95498

Please sign in to comment.