-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create-table renamed to create-tables
- Loading branch information
Yegor Bugayenko
committed
Apr 29, 2014
1 parent
fb754c4
commit 540e39d
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,20 +32,20 @@ | |
import org.junit.Test; | ||
|
||
/** | ||
* Test case for {@link CreateTableMojo} (more detailed test is in maven | ||
* Test case for {@link CreateTablesMojo} (more detailed test is in maven | ||
* invoker). | ||
* @author Carlos Miranda ([email protected]) | ||
* @version $Id$ | ||
*/ | ||
public final class CreateTableMojoTest { | ||
public final class CreateTablesMojoTest { | ||
|
||
/** | ||
* CreateTableMojo can skip execution when flag is set. | ||
* @throws Exception If something is wong. | ||
*/ | ||
@Test | ||
public void skipsExecutionWhenRequired() throws Exception { | ||
final CreateTableMojo mojo = new CreateTableMojo(); | ||
final CreateTablesMojo mojo = new CreateTablesMojo(); | ||
mojo.setSkip(true); | ||
mojo.execute(); | ||
} | ||
|