(c *C)
| 713 | } |
| 714 | |
| 715 | func (*SqliteMigrateSuite) TestSetDisableCreateTable(c *C) { |
| 716 | c.Assert(migSet.DisableCreateTable, Equals, false) |
| 717 | |
| 718 | SetDisableCreateTable(true) |
| 719 | c.Assert(migSet.DisableCreateTable, Equals, true) |
| 720 | |
| 721 | SetDisableCreateTable(false) |
| 722 | c.Assert(migSet.DisableCreateTable, Equals, false) |
| 723 | } |
| 724 | |
| 725 | func (s *SqliteMigrateSuite) TestGetMigrationDbMapWithDisableCreateTable(c *C) { |
| 726 | SetDisableCreateTable(false) |
nothing calls this directly
no test coverage detected