added test for table sequence
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#ifndef MATADOR_TABLE_SEQUENCE_FIXTURE_HPP
|
||||
#define MATADOR_TABLE_SEQUENCE_FIXTURE_HPP
|
||||
|
||||
#include "matador/sql/connection.hpp"
|
||||
|
||||
namespace matador::test {
|
||||
class TableSequenceFixture {
|
||||
public:
|
||||
TableSequenceFixture();
|
||||
~TableSequenceFixture();
|
||||
|
||||
protected:
|
||||
sql::connection db;
|
||||
std::string sequence_table_name{"test_seq_table"};
|
||||
};
|
||||
}
|
||||
|
||||
#endif //MATADOR_TABLE_SEQUENCE_FIXTURE_HPP
|
||||
Reference in New Issue
Block a user