test/unit/schema_test.rb in superstore-1.2.0 vs test/unit/schema_test.rb in superstore-2.0.0

- old
+ new

@@ -1,23 +1,15 @@ require 'test_helper' class Superstore::SchemaTest < Superstore::TestCase # SELECT columnfamily_name FROM System.schema_columnfamilies WHERE keyspace_name='myKeyspaceName'; - test "create and drop_table" do - Superstore::Schema.create_table 'TestRecords' - - begin - Superstore::Schema.create_table 'TestRecords' - assert false, 'TestRecords should already exist' - rescue Exception => e - end - - Superstore::Schema.drop_table 'TestRecords' - - begin - Superstore::Schema.drop_table 'TestRecords' - assert false, 'TestRecords should not exist' - rescue Exception => e - end - end + # test "create_table" do + # Superstore::Schema.create_table 'TestRecords' + # + # begin + # Superstore::Schema.create_table 'TestRecords' + # assert false, 'TestRecords should already exist' + # rescue Exception => e + # end + # end end